Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.47 KB

File metadata and controls

39 lines (30 loc) · 1.47 KB

ProductDetailsResponse

Properties

Name Type Description Notes
object str [optional] [default to 'product']
id str 商品 ID
livemode bool 本番環境かどうか
name str Checkout などで顧客に表示される商品名
active bool 商品が購入可能かどうか
default_price_id str
description str
unit_label str
url str
created_at datetime 作成日時 (UTC, ISO 8601 形式)
updated_at datetime 更新日時 (UTC, ISO 8601 形式)

Example

from payjpv2.models.product_details_response import ProductDetailsResponse

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

# convert the object into a dict
product_details_response_dict = product_details_response_instance.to_dict()
# create an instance of ProductDetailsResponse from a dict
product_details_response_from_dict = ProductDetailsResponse.from_dict(product_details_response_dict)

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