/* Options: Date: 2026-06-01 15:01:56 Version: 8.52 Tip: To override a DTO option, remove "//" prefix before updating BaseUrl: https://www.imglobal.com/RestApi //GlobalNamespace: //MakePropertiesOptional: False //AddServiceStackTypes: True //AddResponseStatus: False //AddImplicitVersion: //AddDescriptionAsComments: True IncludeTypes: RetryTranslation.* //ExcludeTypes: //DefaultImports: */ export enum TranslationStatus { Marked = 101, Sending = 201, Sent = 202, Received = 301, Importing = 302, Imported = 303, Completed = 304, Archived = 401, Deleted = 402, Rejected = 403, SendingError = 501, ImportingError = 502, ReceivingError = 503, } // @Route("/translations/retry", "POST") export class RetryTranslation { public TranslationStatus: TranslationStatus; public Ids: string[]; public ChangedFieldsOnly: boolean; public constructor(init?: Partial) { (Object as any).assign(this, init); } public getTypeName() { return 'RetryTranslation'; } public getMethod() { return 'POST'; } public createResponse() {} }