The Class ProductToInstantiate.
| name | data type | description |
|---|---|---|
| productCode | string | The code. |
| quantity | number | The quantity. |
| deliveryDate | number | |
| attributeInstances | array of OrderAttributeDto |
Example
{
"productCode" : "...",
"quantity" : 12345.0,
"deliveryDate" : 12345,
"attributeInstances" : [ {
"attributeCode" : "...",
"parentAttributeValueId" : 12345,
"commercialOrderId" : 12345,
"assignedAttributeValueIds" : [ 12345, 12345 ],
"orderAttributeCode" : "...",
"customFieldDto" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
},
"attributeType" : "EMAIL",
"orderAttributeId" : 12345,
"orderLotCode" : "...",
"orderProductId" : 12345,
"orderOfferId" : 12345,
"accessPoint" : "...",
"linkedOrderAttribute" : [ { }, { } ],
"stringValue" : "...",
"doubleValue" : 12345.0,
"dateValue" : 12345,
"booleanValue" : true
}, {
"attributeCode" : "...",
"parentAttributeValueId" : 12345,
"commercialOrderId" : 12345,
"assignedAttributeValueIds" : [ 12345, 12345 ],
"orderAttributeCode" : "...",
"customFieldDto" : {
"customField" : [ { }, { } ],
"inheritedCustomField" : [ { }, { } ]
},
"attributeType" : "TEXT",
"orderAttributeId" : 12345,
"orderLotCode" : "...",
"orderProductId" : 12345,
"orderOfferId" : 12345,
"accessPoint" : "...",
"linkedOrderAttribute" : [ { }, { } ],
"stringValue" : "...",
"doubleValue" : 12345.0,
"dateValue" : 12345,
"booleanValue" : true
} ]
}