Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.16 KB

File metadata and controls

32 lines (23 loc) · 1.16 KB

PriceDataRequest

Properties

Name Type Description Notes
currency Currency 通貨。現在は `jpy` のみサポートしています。
unit_amount int 単価(0以上の整数)
product_id str [optional]
product_data ProductDataRequest [optional]

Example

from payjpv2.models.price_data_request import PriceDataRequest

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

# convert the object into a dict
price_data_request_dict = price_data_request_instance.to_dict()
# create an instance of PriceDataRequest from a dict
price_data_request_from_dict = PriceDataRequest.from_dict(price_data_request_dict)

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