/* Options: Date: 2025-09-14 17:59:42 Version: 8.80 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ResyncBookingToCodeLock.* //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="/codelock/resync/{BookingId}", Verbs="POST") @ValidateRequest(Validator="IsAuthenticated") open class ResyncBookingToCodeLock : ICompany { /** * 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 /** * Booking id */ @ApiMember(Description="Booking id", IsRequired=true, ParameterType="path") open var BookingId:Int? = null } interface ICompany { var CompanyId:UUID? }