/* Options: Date: 2025-04-24 19:31:19 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StripeGetAccountRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class StripeAccountQueryResponse { public StripeAccount: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payment/stripe/v1/account", "GET") export class StripeGetAccountRequest implements IReturn, ICompany { /** @description The company id. */ // @ApiMember(Description="The company id.", IsRequired=true) public CompanyId: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'StripeGetAccountRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new StripeAccountQueryResponse(); } }