Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.11 KB

File metadata and controls

31 lines (22 loc) · 1.11 KB

ProductDeletedResponse

Properties

Name Type Description Notes
object str [optional] [default to 'product']
id str 商品 ID
deleted bool 削除されたかどうか [optional] [default to True]

Example

from payjpv2.models.product_deleted_response import ProductDeletedResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ProductDeletedResponse from a JSON string
product_deleted_response_instance = ProductDeletedResponse.from_json(json)
# print the JSON string representation of the object
print(ProductDeletedResponse.to_json())

# convert the object into a dict
product_deleted_response_dict = product_deleted_response_instance.to_dict()
# create an instance of ProductDeletedResponse from a dict
product_deleted_response_from_dict = ProductDeletedResponse.from_dict(product_deleted_response_dict)

[Back to Model list] [Back to API list] [Back to README]