/* Options: Date: 2025-05-06 18:51:18 Version: 8.70 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://unstable-consumer-api.brovs.com //GlobalNamespace: ConsumerApi //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: MobilePhoneSendShortCodeRequest.* //ExcludeTypes: //DefaultImports: */ export module ConsumerApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IPost { } export enum Locale { EnUs = 'EnUs', NbNo = 'NbNo', } export class MobilePhoneSendShortCodeResponse { public verifiedToken?: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/recovery/mobile/send_short_code", "POST") export class MobilePhoneSendShortCodeRequest implements IReturn, IPost { public verifiedToken?: string; // @Validate(Validator="NotEmpty") public phoneNumber: string; public locale?: Locale; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'MobilePhoneSendShortCodeRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new MobilePhoneSendShortCodeResponse(); } } }