/* Options: Date: 2025-07-18 07:58:58 Version: 6.110 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: http://portal-api.migrantleap.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: BuySubscriptionRequest.* //ExcludeTypes: //DefaultImports: */ // @Route("/buy", "GET") export class BuySubscriptionRequest { public sid: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'BuySubscriptionRequest'; } public getMethod() { return 'GET'; } public createResponse() {} }