/* Options: Date: 2024-12-23 12:11:56 Version: 8.0 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ProfileUpdateMobilePhoneSendVerificationSmsRequest.* //ExcludeTypes: //DefaultImports: */ export module ConsumerApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPut { } export class ProfileUpdateMobilePhoneSendVerificationSmsResponse { public profileUpdateMobilePhoneRequestToken: string; public sentSmsWithRequestId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/profile/update-mobile-phone-start", "PUT") export class ProfileUpdateMobilePhoneSendVerificationSmsRequest implements IReturn, IPut { public mobilePhone: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ProfileUpdateMobilePhoneSendVerificationSmsRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new ProfileUpdateMobilePhoneSendVerificationSmsResponse(); } } }