/* Options: Date: 2024-07-03 13:07:11 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: PaysonCheckout1UpdateStatus.* //ExcludeTypes: //DefaultImports: */ export interface ICompany { CompanyId?: string; } // @Route("/payment/payson/v1/updatestatus", "PUT") export class PaysonCheckout1UpdateStatus implements ICompany { /** @description The company id, if empty will use the company id for the user you are logged in with. */ // @ApiMember(Description="The company id, if empty will use the company id for the user you are logged in with.") public CompanyId?: string; /** @description The booking id. */ // @ApiMember(Description="The booking id.") public BookingId: number; /** @description The payment token. */ // @ApiMember(Description="The payment token.") public Token: string; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'PaysonCheckout1UpdateStatus'; } public getMethod() { return 'PUT'; } public createResponse() {} }