/* Options: Date: 2026-05-21 19:41:13 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CodeLockIloqSettingQuery.* //ExcludeTypes: //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,java.io.InputStream,net.servicestack.client.* */ import java.math.* import java.util.* import java.io.InputStream import net.servicestack.client.* @Route(Path="/codelock/iloq/settings", Verbs="GET") @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 CodeLockIloqSettingQuery : 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.") override var CompanyId:UUID? = null companion object { private val responseType = CodeLockIloqSettingResponse::class.java } override fun getResponseType(): Any? = CodeLockIloqSettingQuery.responseType } open class CodeLockIloqSettingResponse { open var CompanyId:UUID? = null /** * The iLOQ system identifier (e.g. ILOQ_21140) */ @ApiMember(DataType="string", Description="The iLOQ system identifier (e.g. ILOQ_21140)") open var CustomerCode:String? = null /** * The username to logon to the iLOQ system. */ @ApiMember(DataType="string", Description="The username to logon to the iLOQ system.") open var Username:String? = null /** * The password to logon to the iLOQ system. */ @ApiMember(DataType="string", Description="The password to logon to the iLOQ system.") open var Password:String? = null /** * The default Security Access name to use when no resource access group is specified. */ @ApiMember(DataType="string", Description="The default Security Access name to use when no resource access group is specified.") open var DefaultSecurityAccessName:String? = null /** * When settings were created */ @ApiMember(DataType="datetime", Description="When settings were created") open var Created:Date? = null /** * When settings were updated */ @ApiMember(DataType="datetime", Description="When settings were updated") open var Updated:Date? = null } interface ICompany { var CompanyId:UUID? }