/* Options: Date: 2024-06-18 06:48:08 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //GlobalNamespace: dtos //AddPropertyAccessors: True //SettersReturnThis: True //AddServiceStackTypes: True //AddResponseStatus: False //AddDescriptionAsComments: True //AddImplicitVersion: IncludeTypes: ResyncBookingToCodeLock.* //ExcludeTypes: //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.*; import java.util.*; import net.servicestack.client.*; public class dtos { @Route(Path="/codelock/resync/{bookingid}", Verbs="POST") @ValidateRequest(Validator="IsAuthenticated") public static class ResyncBookingToCodeLock implements 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.") public UUID CompanyId = null; /** * Booking id */ @ApiMember(Description="Booking id", IsRequired=true, ParameterType="path") public Integer BookingId = null; public UUID getCompanyId() { return CompanyId; } public ResyncBookingToCodeLock setCompanyId(UUID value) { this.CompanyId = value; return this; } public Integer getBookingId() { return BookingId; } public ResyncBookingToCodeLock setBookingId(Integer value) { this.BookingId = value; return this; } } public static interface ICompany { public UUID CompanyId = null; } }