| Name |
Type |
Description |
Notes |
| id |
str |
|
[optional] |
| object |
str |
|
[optional] |
| parent_id |
str |
|
[optional] |
from conekta.models.product_data_response_all_of import ProductDataResponseAllOf
# TODO update the JSON string below
json = "{}"
# create an instance of ProductDataResponseAllOf from a JSON string
product_data_response_all_of_instance = ProductDataResponseAllOf.from_json(json)
# print the JSON string representation of the object
print ProductDataResponseAllOf.to_json()
# convert the object into a dict
product_data_response_all_of_dict = product_data_response_all_of_instance.to_dict()
# create an instance of ProductDataResponseAllOf from a dict
product_data_response_all_of_form_dict = product_data_response_all_of.from_dict(product_data_response_all_of_dict)
[Back to Model list] [Back to API list] [Back to README]