/* Options: Date: 2024-06-26 09:30:29 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: SettingsErrorCheck.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/settings/errorcheck", Verbs="GET") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) // @ApiResponse(Description="You have too low privilegies to call this service", StatusCode=403) @ValidateRequest(Validator="IsAuthenticated") open class SettingsErrorCheck : 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 companion object { private val responseType = SettingsErrorCheckResponse::class.java } override fun getResponseType(): Any? = SettingsErrorCheck.responseType } open class SettingsErrorCheckResponse { /** * The errormessage */ @ApiMember(DataType="string", Description="The errormessage") var ErrorMessage:String? = null } open interface ICompany { var CompanyId:UUID? }