/* Options: Date: 2025-04-12 11:23:25 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: StripeConnectAccountRequest.* //ExcludeTypes: //DefaultImports: */ export interface IReturn { createResponse(): T; } export interface ICompany { CompanyId?: string; } export class StripeConnectAccountRes { public Url: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } } // @Route("/payment/stripe/v1/account/connect", "GET") export class StripeConnectAccountRequest implements IReturn, ICompany { /** @description The company id. */ // @ApiMember(Description="The company id.") public CompanyId?: string; /** @description Uri to which stripe will redirect back to after authorization. */ // @ApiMember(Description="Uri to which stripe will redirect back to after authorization.", IsRequired=true) public RedirectUri: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'StripeConnectAccountRequest'; } public getMethod() { return 'GET'; } public createResponse() { return new StripeConnectAccountRes(); } }