/* Options: Date: 2025-04-04 20:55:46 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: StripeConnectAccountCallbackRequest.* //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-settings/stripe-api/stripe-auth", "POST") export class StripeConnectAccountCallbackRequest implements IReturn, ICompany { /** @description The company id. */ // @ApiMember(Description="The company id.", IsRequired=true) public CompanyId: string; public Code: string; public Scope: string; /** @description The company id. */ // @ApiMember(Description="The company id.") public State: string; public Error: string; public ErrorDescription: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'StripeConnectAccountCallbackRequest'; } public getMethod() { return 'POST'; } public createResponse() { return new StripeAccountResponse(); } }