Home > @tridion-sites/open-api-client > TranslationJobState
State of a translation job.
Members: * Canceled
- The job has been canceled.
* Definition
- The job is in definition state - it can still be edited.
* ReadyForTranslation
- The job has been defined, and is waiting for the Translation Manager Service to retrieve it.
* SubmittingToTranslation
- The job is being transferred to the translation management system.
* InTranslation
- The job is under control of the translation management system.
* Completed
- The job has been completed.
* ReadyForDeletion
- The job can be deleted and is waiting for the service to pick up the task.
* Deleting
- The job is currently being deleted.
* None
- Unspecified state (used to get jobs for all states).
* UnknownByClient
- Special reserved value used to notify an older API version client about the presence of an enumeration member added in a later API version. Explicitly setting this value by a client is not allowed, but client code should check it and be able to handle such cases.
Signature:
export declare enum TranslationJobState
Member | Value | Description |
---|---|---|
CANCELED | "Canceled" |
|
COMPLETED | "Completed" |
|
DEFINITION | "Definition" |
|
DELETING | "Deleting" |
|
IN_TRANSLATION | "InTranslation" |
|
NONE | "None" |
|
READY_FOR_DELETION | "ReadyForDeletion" |
|
READY_FOR_TRANSLATION | "ReadyForTranslation" |
|
SUBMITTING_TO_TRANSLATION | "SubmittingToTranslation" |
|
UNKNOWN_BY_CLIENT | "UnknownByClient" |