/* Options: Date: 2026-06-01 14:59:01 SwiftVersion: 6.0 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //BaseClass: //AddModelExtensions: True //AddServiceStackTypes: True //MakePropertiesOptional: True IncludeTypes: RetryTranslation.* //ExcludeTypes: //ExcludeGenericBaseTypes: False //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True //InitializeCollections: False //TreatTypesAsStrings: //DefaultImports: Foundation,ServiceStack */ import Foundation import ServiceStack // @Route("/translations/retry", "POST") public class RetryTranslation : Codable { public var translationStatus:TranslationStatus? public var ids:[String]? public var changedFieldsOnly:Bool? required public init(){} } public enum TranslationStatus : Int, Codable { case Marked = 101 case Sending = 201 case Sent = 202 case Received = 301 case Importing = 302 case Imported = 303 case Completed = 304 case Archived = 401 case Deleted = 402 case Rejected = 403 case SendingError = 501 case ImportingError = 502 case ReceivingError = 503 }