/* Options: Date: 2024-05-11 04:57:11 Version: 8.23 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://test.servicestack.net //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: CustomHttpError.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* open class CustomHttpError : IReturn { var statusCode:Int? = null var statusDescription:String? = null companion object { private val responseType = CustomHttpErrorResponse::class.java } override fun getResponseType(): Any? = CustomHttpError.responseType } open class CustomHttpErrorResponse { var custom:String? = null var responseStatus:ResponseStatus? = null }