/* Options: Date: 2026-03-14 18:40:26 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://production-eros-gateway-api-sms-wa.azurewebsites.net/api //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: SendTask.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack public class SendTask : IReturn, Codable { public typealias Return = GatewayTaskResponse public var gatewayTask:GatewayTask? required public init(){} } public class GatewayTaskResponse : Codable { public var referenceId:String? public var gatewayTaskResponseStatus:GatewayResponseStatus? public var payload:String? required public init(){} } public class GatewayTask : BaseQueueMessage { public var referenceId:String? public var jobTypeId:String? public var isBeingProcessed:Bool? public var payload:String? public var contentStoredExternally:Bool? public var resendRequest:Bool? required public init(){ super.init() } private enum CodingKeys : String, CodingKey { case referenceId case jobTypeId case isBeingProcessed case payload case contentStoredExternally case resendRequest } required public init(from decoder: Decoder) throws { try super.init(from: decoder) let container = try decoder.container(keyedBy: CodingKeys.self) referenceId = try container.decodeIfPresent(String.self, forKey: .referenceId) jobTypeId = try container.decodeIfPresent(String.self, forKey: .jobTypeId) isBeingProcessed = try container.decodeIfPresent(Bool.self, forKey: .isBeingProcessed) payload = try container.decodeIfPresent(String.self, forKey: .payload) contentStoredExternally = try container.decodeIfPresent(Bool.self, forKey: .contentStoredExternally) resendRequest = try container.decodeIfPresent(Bool.self, forKey: .resendRequest) } public override func encode(to encoder: Encoder) throws { try super.encode(to: encoder) var container = encoder.container(keyedBy: CodingKeys.self) if referenceId != nil { try container.encode(referenceId, forKey: .referenceId) } if jobTypeId != nil { try container.encode(jobTypeId, forKey: .jobTypeId) } if isBeingProcessed != nil { try container.encode(isBeingProcessed, forKey: .isBeingProcessed) } if payload != nil { try container.encode(payload, forKey: .payload) } if contentStoredExternally != nil { try container.encode(contentStoredExternally, forKey: .contentStoredExternally) } if resendRequest != nil { try container.encode(resendRequest, forKey: .resendRequest) } } } public enum GatewayResponseStatus : String, Codable { case Initiated case Successful case JobError } public class BaseQueueMessage : Codable { public var licenseeId:String? required public init(){} }