/* Options: Date: 2024-06-26 08:19:57 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: AddParakeyCodeLockSetting.* //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/parakey/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 AddParakeyCodeLockSetting : 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 domain id of the code lock. */ @ApiMember(DataType="string", Description="The domain id of the code lock.", IsRequired=true) var DomainId:String? = null /** * The access token of the code lock. */ @ApiMember(DataType="string", Description="The access token of the code lock.", IsRequired=true) var AccessToken:String? = null companion object { private val responseType = CodeLockParakeySettingResponse::class.java } override fun getResponseType(): Any? = AddParakeyCodeLockSetting.responseType } open class CodeLockParakeySettingResponse { var CompanyId:UUID? = null /** * The domain id of the code lock. */ @ApiMember(DataType="string", Description="The domain id of the code lock.") var DomainId:String? = null /** * The access token of the code lock. */ @ApiMember(DataType="string", Description="The access token of the code lock.") var AccessToken:String? = 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? }