TranslationStatus Data Type

Class encapsulating the synchronization information of page translations

Properties
name data type constraints description
pageId number   Page id of the page with which the given page is in sync
name string   Page name of the page with which the given page is in sync
versionTimestamp number   Version timestamp of the synchronized version
language string   Language of the synchronized version
inSync boolean required boolean True when the page is in sync with the latest version of the other language variant, false if not
version string   Version number of the page version, with which this page is in sync
latestVersion Latest   Latest version information

Example

{
  "pageId" : 12345,
  "name" : "...",
  "versionTimestamp" : 12345,
  "language" : "...",
  "inSync" : true,
  "version" : "...",
  "latestVersion" : {
    "versionTimestamp" : 12345,
    "version" : "..."
  }
}