/* Options: Date: 2024-06-16 21:41:13 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://testapi.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: AddVanderbiltCodeLockSetting.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/codelock/vanderbilt/settings", Verbs="POST") @ValidateRequest(Validator="IsAuthenticated") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ApiResponse(Description="You have too low privileges to call this service", StatusCode=403) open class AddVanderbiltCodeLockSetting : IReturn, 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.") var CompanyId:UUID? = null /** * The api endpoint of the code lock */ @ApiMember(DataType="string", Description="The api endpoint of the code lock", IsRequired=true) var ApiEndpoint:String? = null /** * The api port for the code lock. */ @ApiMember(DataType="string", Description="The api port for the code lock.", IsRequired=true) var ApiPort:String? = null /** * The default identifier for the code lock. */ @ApiMember(DataType="string", Description="The default identifier for the code lock.", IsRequired=true) var Identifier:String? = null /** * The default facility id to be used when no set on the resource. */ @ApiMember(DataType="string", Description="The default facility id to be used when no set on the resource.") var DefaultFacilityId:String? = null companion object { private val responseType = CodeLockVanderbiltSettingResponse::class.java } override fun getResponseType(): Any? = AddVanderbiltCodeLockSetting.responseType } open class CodeLockVanderbiltSettingResponse { var CompanyId:UUID? = null /** * The api endpoint of the code lock */ @ApiMember(DataType="string", Description="The api endpoint of the code lock") var ApiEndpoint:String? = null /** * The api port for the code lock. */ @ApiMember(DataType="string", Description="The api port for the code lock.") var ApiPort:Int? = null /** * The default identifier for the code lock. */ @ApiMember(DataType="string", Description="The default identifier for the code lock.") var Identifier:String? = null /** * The default facility id to be used when no set on the resource. */ @ApiMember(DataType="string", Description="The default facility id to be used when no set on the resource.") var DefaultFacilityId:Int? = null /** * When settings was created */ @ApiMember(DataType="datetime", Description="When settings was created") var Created:Date? = null /** * When settings was updated */ @ApiMember(DataType="datetime", Description="When settings was updated") var Updated:Date? = null } open interface ICompany { var CompanyId:UUID? }