Name |
Type |
Description |
Notes |
id |
int |
ID of the data request |
|
from openapi_client.models.shopify_data_request_schema import ShopifyDataRequestSchema
# TODO update the JSON string below
json = "{}"
# create an instance of ShopifyDataRequestSchema from a JSON string
shopify_data_request_schema_instance = ShopifyDataRequestSchema.from_json(json)
# print the JSON string representation of the object
print(ShopifyDataRequestSchema.to_json())
# convert the object into a dict
shopify_data_request_schema_dict = shopify_data_request_schema_instance.to_dict()
# create an instance of ShopifyDataRequestSchema from a dict
shopify_data_request_schema_from_dict = ShopifyDataRequestSchema.from_dict(shopify_data_request_schema_dict)
[Back to Model list] [Back to API list] [Back to README]