/* Options: Date: 2026-08-03 13:12:35 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReleaseBookingReservation.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } export interface ICompany { CompanyId?: string; } // @Route("/bookingreservations/{SessionKey}", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ApiResponse(Description="No reservation found for the given session key", StatusCode=404) export class ReleaseBookingReservation implements IReturnVoid, ICompany { /** @description The opaque session key that identifies the reservation. */ // @ApiMember(Description="The opaque session key that identifies the reservation.", IsRequired=true, ParameterType="path") public SessionKey: string; /** @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; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'ReleaseBookingReservation'; } public getMethod() { return 'DELETE'; } public createResponse() {} }