/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { EmailVerificationCreateResponse } from './EmailVerificationCreateResponse'; import { NextViewEnum } from './NextViewEnum'; import { SmsVerificationCreateResponse } from './SmsVerificationCreateResponse'; /** * * @export * @interface UpdateSelfResponseAllOf */ export interface UpdateSelfResponseAllOf { /** * * @type {NextViewEnum} * @memberof UpdateSelfResponseAllOf */ nextView: NextViewEnum; /** * * @type {EmailVerificationCreateResponse} * @memberof UpdateSelfResponseAllOf */ emailVerification?: EmailVerificationCreateResponse; /** * * @type {SmsVerificationCreateResponse} * @memberof UpdateSelfResponseAllOf */ smsVerification?: SmsVerificationCreateResponse; } export declare function UpdateSelfResponseAllOfFromJSON(json: any): UpdateSelfResponseAllOf; export declare function UpdateSelfResponseAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateSelfResponseAllOf; export declare function UpdateSelfResponseAllOfToJSON(value?: UpdateSelfResponseAllOf | null): any;