/* Options: Date: 2024-06-26 11:32:47 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: CreateError.* //ExcludeTypes: //InitializeCollections: True //TreatTypesAsStrings: //DefaultImports: java.math.*,java.util.*,net.servicestack.client.* */ import java.math.* import java.util.* import net.servicestack.client.* @Route(Path="/errors/", Verbs="POST") open class CreateError : 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 /** * */ @ApiMember(Description="", IsRequired=true) var ExceptionName:String? = null /** * */ @ApiMember(Description="", IsRequired=true) var ExceptionMessage:String? = null /** * */ @ApiMember(Description="") var ExceptionSource:String? = null /** * */ @ApiMember(Description="", IsRequired=true) var InnerExceptionName:String? = null /** * */ @ApiMember(Description="", IsRequired=true) var StackTrace:String? = null /** * */ @ApiMember(Description="", IsRequired=true) var URL:String? = null /** * */ @ApiMember(Description="") var LoggedInUser:String? = null /** * */ @ApiMember(Description="") var IPAddress:String? = null /** * */ @ApiMember(Description="") var Request:String? = null /** * */ @ApiMember(Description="") var Session:String? = null companion object { private val responseType = ErrorQueryResponse::class.java } override fun getResponseType(): Any? = CreateError.responseType } open class ErrorQueryResponse { var CompanyId:UUID? = null var Id:Int? = null var ExceptionName:String? = null var ExceptionMessage:String? = null var ExceptionSource:String? = null var InnerExceptionName:String? = null var StackTrace:String? = null var URL:String? = null var LoggedInUser:String? = null var Visible:Boolean? = null var IPAddress:String? = null var CreatedDate:Date? = null var Request:String? = null var Session:String? = null } open interface ICompany { var CompanyId:UUID? }