/* Options: Date: 2024-06-26 09:36:11 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: CreateRcoEnablaCodeLockSetting.* //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/rcoenabla/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 CreateRcoEnablaCodeLockSetting : 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 system id of the code lock. */ @ApiMember(DataType="string", Description="The system id of the code lock.") var SystemId:String? = null companion object { private val responseType = CodeLockRcoEnablaSettingResponse::class.java } override fun getResponseType(): Any? = CreateRcoEnablaCodeLockSetting.responseType } open class CodeLockRcoEnablaSettingResponse { var CompanyId:UUID? = null /** * The system id of the code lock. */ @ApiMember(DataType="string", Description="The system id of the code lock.") var SystemId:String? = null /** * The client id of the code lock. */ @ApiMember(DataType="string", Description="The client id of the code lock.") var ClientId:String? = null /** * The client secret of the code lock. */ @ApiMember(DataType="string", Description="The client secret of the code lock.") var ClientSecret: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? }