/* Options: Date: 2024-07-03 12:41:04 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api.bokamera.se //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CheckCompanyUserExists.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/administrators/exists", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) open class CheckCompanyUserExists : IReturn { /** * The email to the administrator. */ @ApiMember(Description="The email to the administrator.") var Email:String? = null companion object { private val responseType = CheckCompanyUserExistsResponse::class.java } override fun getResponseType(): Any? = CheckCompanyUserExists.responseType } open class CheckCompanyUserExistsResponse { var Exists:Boolean? = null var Message:String? = null }