Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.01 KB

File metadata and controls

31 lines (22 loc) · 1.01 KB

LineItemRequest

Properties

Name Type Description Notes
price_id str 料金 ID
quantity int 購入する商品の数量
tax_rates List[str] 税率 ID [optional] [default to []]

Example

from payjpv2.models.line_item_request import LineItemRequest

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

# convert the object into a dict
line_item_request_dict = line_item_request_instance.to_dict()
# create an instance of LineItemRequest from a dict
line_item_request_from_dict = LineItemRequest.from_dict(line_item_request_dict)

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