| Name |
Type |
Description |
Notes |
| antifraud_info |
Dict[str, object] |
|
[optional] |
| brand |
str |
The brand of the item. |
[optional] |
| description |
str |
Short description of the item |
[optional] |
| metadata |
Dict[str, str] |
It is a key/value hash that can hold custom fields. Maximum 100 elements and allows special characters. |
[optional] |
| name |
str |
The name of the item. It will be displayed in the order. |
|
| quantity |
int |
The quantity of the item in the order. |
|
| sku |
str |
The stock keeping unit for the item. It is used to identify the item in the order. |
[optional] |
| tags |
List[str] |
List of tags for the item. It is used to identify the item in the order. |
[optional] |
| unit_price |
int |
The price of the item in cents. |
|
| id |
str |
|
[optional] |
| object |
str |
|
[optional] |
| parent_id |
str |
|
[optional] |
from conekta.models.product_order_response import ProductOrderResponse
# TODO update the JSON string below
json = "{}"
# create an instance of ProductOrderResponse from a JSON string
product_order_response_instance = ProductOrderResponse.from_json(json)
# print the JSON string representation of the object
print ProductOrderResponse.to_json()
# convert the object into a dict
product_order_response_dict = product_order_response_instance.to_dict()
# create an instance of ProductOrderResponse from a dict
product_order_response_form_dict = product_order_response.from_dict(product_order_response_dict)
[Back to Model list] [Back to API list] [Back to README]