/**
 * KADiCon API
 *
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

export interface UpdateMessagingTokenRequest {
	platform: UpdateMessagingTokenRequest.PlatformEnum
	token: string
}
export namespace UpdateMessagingTokenRequest {
	export const PlatformEnum = {
		web: 'web',
		mobile: 'mobile',
	} as const
	export type PlatformEnum = (typeof PlatformEnum)[keyof typeof PlatformEnum]
}
