/* Options: Date: 2026-06-19 13:41:00 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-staging.bookmore.com //Package: //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: ReplayVossErrorLog.* //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="/voss/errorlog/{Id}/replay", Verbs="POST") @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) open class ReplayVossErrorLog : IReturn { /** * VossErrorLog id to replay */ @ApiMember(Description="VossErrorLog id to replay", IsRequired=true) open var Id:Int? = null companion object { private val responseType = VossErrorLogQueryResponse::class.java } override fun getResponseType(): Any? = ReplayVossErrorLog.responseType } open class VossErrorLogQueryResponse { open var Id:Int? = null open var CompanyId:UUID? = null open var TypeId:Int? = null open var TypeName:String? = null open var Source:Int? = null open var SourceName:String? = null open var Comments:String? = null open var MetaData:String? = null open var QueueName:String? = null open var MessageType:String? = null open var DeliveryCount:Int? = null open var DeadLetterReason:String? = null open var Resolved:Boolean? = null open var CreatedDate:Date? = null }