ProductInstanceException
Product instancevalue exception
Fields
Field | Description |
---|---|
properties map<string, string[]> (required) | Properties for which this exception is valid Example value:{ "colour": [ "red" ], "size": [ "S" ] } |
value ProductInstanceValue (required) | Value for this exception Example value:{ "price": 25.000000, "voucher": { "amount": 20.000000, "voucherid": 123 } } |
Example
1{
2 "properties": {
3 "colour": [
4 "red"
5 ],
6 "size": [
7 "S"
8 ]
9 },
10 "value": {
11 "price": 25.000000,
12 "voucher": {
13 "amount": 20.000000,
14 "voucherid": 123
15 }
16 }
17}