/* Options: Date: 2026-06-19 13:44:07 SwiftVersion: 6.0 Version: 10.05 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://api-staging.bookmore.com //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: ReplayVossErrorLog.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/voss/errorlog/{Id}/replay", "POST") // @ApiResponse(Description="You were unauthorized to call this service", StatusCode=401) public class ReplayVossErrorLog : IReturn, Codable { public typealias Return = VossErrorLogQueryResponse /** * VossErrorLog id to replay */ // @ApiMember(Description="VossErrorLog id to replay", IsRequired=true) public var id:Int? required public init(){} } public class VossErrorLogQueryResponse : Codable { public var id:Int? public var companyId:String? public var typeId:Int? public var typeName:String? public var source:Int? public var sourceName:String? public var comments:String? public var metaData:String? public var queueName:String? public var messageType:String? public var deliveryCount:Int? public var deadLetterReason:String? public var resolved:Bool? public var createdDate:Date? required public init(){} }