/* Options: Date: 2025-09-13 18:35:06 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: StripeUpdateAccountRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class StripeAccountQueryResponse { public StripeAccount: string; public EnableKlarna: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payment/stripe/v1/account", "PUT") export class StripeUpdateAccountRequest implements IReturn, ICompany { /** @description The company id. */ // @ApiMember(Description="The company id.", IsRequired=true) public CompanyId: string; public EnableKlarna: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'StripeUpdateAccountRequest'; } public getMethod() { return 'PUT'; } public createResponse() { return new StripeAccountQueryResponse(); } }