Name | Type | Description | Additional information |
---|---|---|---|
tmGuid | Guid | The Guid of the translation memory |
Name | Type | Description |
---|---|---|
Client | String | Optional, default value: null; The client of the TM entry. |
ContextID | String | Optional, default value: null; The context id of the TM entry. |
CustomMetas | TMCustomMetaItem[] | Optional, default value: null; An array of the TM entry's custom meta properties. |
Name | String | Obligatory; The name of the custom meta property. |
Value | Object | Optional, default value: null; The value of the custom meta property. |
Document | String | Optional, default value: null; The document of the TM entry. |
Domain | String | Optional, default value: null; The domain of the TM entry. |
FollowingSegment | String | Optional, default value: null; The following segment of the TM entry. |
Key | Int32 | Optional, default value: 0; The key of the TM entry. |
PrecedingSegment | String | Optional, default value: null; The preceding segment of the TM entry. |
Project | String | Optional, default value: null; The project of the TM entry. |
SourceSegment | String | Obligatory; The source segment of the TM entry. |
Subject | String | Optional, default value: null; The subject of the TM entry. |
TargetSegment | String | Obligatory; The target segment of the TM entry. |
{ "Client": "client", "ContextID": "context id", "Document": "document", "Domain": "domain", "FollowingSegment": "<seg>Following segment content.</seg>", "Key": 0, "PrecedingSegment": "<seg>Preceding segment content.</seg>", "Project": "project", "SourceSegment": "<seg>Sample segment content1.</seg>", "Subject": "subject", "TargetSegment": "<seg>Sample segment content2.</seg>", "CustomMetas": [ { "Name": "name", "Value": "value" }, { "Name": "name", "Value": "value" }, { "Name": "name", "Value": "value" } ] }