/* Options: Date: 2024-12-23 13:19:53 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: ReferFriendLinkRequest.* //ExcludeTypes: //DefaultImports: */ export module ConsumerApi { // @ts-nocheck export interface IReturn { createResponse(): T; } export interface IGet { } export class ReferFriendLinkResponse { public linkWithReferFriendToken: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/share/refer-friend-link", "GET") export class ReferFriendLinkRequest implements IReturn, IGet { public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ReferFriendLinkRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new ReferFriendLinkResponse(); } } }