This class is a model for a template migration mapping.
| name | data type | description |
|---|---|---|
| nodeId | number | The node id for this mapping. |
| editableTagMappings | array of TemplateMigrationEditableTagMapping | |
| nonEditableTagMappings | array of TemplateMigrationNonEditableTagMapping | |
| fromTemplateId | number | |
| toTemplateId | number |
Example
{
"nodeId" : 12345,
"editableTagMappings" : [ {
"partMappings" : [ {
"fromPartId" : 12345,
"toPartId" : 12345,
"partMappingType" : "..."
}, {
"fromPartId" : 12345,
"toPartId" : 12345,
"partMappingType" : "..."
} ],
"fromTagId" : 12345,
"toTagId" : 12345
}, {
"partMappings" : [ {
"fromPartId" : 12345,
"toPartId" : 12345,
"partMappingType" : "..."
}, {
"fromPartId" : 12345,
"toPartId" : 12345,
"partMappingType" : "..."
} ],
"fromTagId" : 12345,
"toTagId" : 12345
} ],
"nonEditableTagMappings" : [ {
"fromTagId" : 12345,
"toTagId" : 12345
}, {
"fromTagId" : 12345,
"toTagId" : 12345
} ],
"fromTemplateId" : 12345,
"toTemplateId" : 12345
}