Properties
| Name | Type | Description |
|---|---|---|
| paymentData | object | |
| items | array | |
| shippingData | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/From1",
"title": "From1",
"required": [
"paymentData",
"items",
"shippingData"
],
"type": "object",
"properties": {
"paymentData": {
"$ref": "#/components/schemas/PaymentDataV2"
},
"items": {
"type": "array",
"items": {
"$ref": "#/components/schemas/Item2V2"
}
},
"shippingData": {
"$ref": "#/components/schemas/ShippingData1"
}
},
"example": {
"paymentData": {
"transactions": []
},
"items": [
{
"id": "31",
"quantity": 1,
"price": null,
"measurementUnit": null,
"unitMultiplier": 0,
"sellingPrice": null,
"name": null,
"detailUrl": null,
"imageUrl": null
}
],
"shippingData": {
"logisticsInfo": []
}
}
}