/* Options: Date: 2026-08-03 22:20:38 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AdminReleaseBookingReservation.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/admin/bookingreservations/{Id}", Verbs="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) open class AdminReleaseBookingReservation : IReturnVoid, ICompany { /** * The internal reservation id (from the admin list endpoint). */ @ApiMember(Description="The internal reservation id (from the admin list endpoint).", IsRequired=true, ParameterType="path") open var Id:Int? = null /** * 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.") override var CompanyId:UUID? = null } interface ICompany { var CompanyId:UUID? }