/* Options: Date: 2026-08-03 13:11:07 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: AdminReleaseBookingReservation.* //ExcludeTypes: //DefaultImports: */ // @ts-nocheck export interface IReturnVoid { createResponse(): void; } export interface ICompany { CompanyId?: string; } // @Route("/admin/bookingreservations/{Id}", "DELETE") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ApiResponse(Description="You are not an administrator for the requested company", StatusCode=403) // @ApiResponse(Description="No reservation found for the given id", StatusCode=404) export class AdminReleaseBookingReservation implements IReturnVoid, ICompany { /** @description The internal reservation id (from the admin list endpoint). */ // @ApiMember(Description="The internal reservation id (from the admin list endpoint).", IsRequired=true, ParameterType="path") public Id: number; /** @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 'AdminReleaseBookingReservation'; } public getMethod() { return 'DELETE'; } public createResponse() {} }