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