/* Options: Date: 2025-04-09 10:56:08 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StripeCreateAccountRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class StripeAccountResponse { public Message: string; public Success: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payment/stripe/v1/account", "POST") export class StripeCreateAccountRequest implements IReturn, ICompany { /** @description The company id. */ // @ApiMember(Description="The company id.", IsRequired=true) public CompanyId: string; /** @description One of: company, government_entity, individual, or non_profit. */ // @ApiMember(Description="One of: company, government_entity, individual, or non_profit.", IsRequired=true) public BusinessType: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'StripeCreateAccountRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new StripeAccountResponse(); } }