/* Options: Date: 2024-06-17 08:00:43 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: UpdateZesecCodeLockSetting.* //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/zesec/settings", Verbs="PUT") @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 UpdateZesecCodeLockSetting : 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 username (phone number) for login to the code lock */ @ApiMember(DataType="string", Description="The username (phone number) for login to the code lock") var PhoneNumber:String? = null /** * The password for login to the code lock */ @ApiMember(DataType="string", Description="The password for login to the code lock") var Password:String? = null companion object { private val responseType = CodeLockZesecSettingResponse::class.java } override fun getResponseType(): Any? = UpdateZesecCodeLockSetting.responseType } open class CodeLockZesecSettingResponse { var CompanyId:UUID? = null /** * The username for login to the code lock */ @ApiMember(DataType="string", Description="The username for login to the code lock") var PhoneNumber:String? = null /** * The username (phone number) for login to the code lock */ @ApiMember(DataType="string", Description="The username (phone number) for login to the code lock") var Password: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? }