Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.1 KB

File metadata and controls

32 lines (23 loc) · 1.1 KB

StatementItemResponse

Properties

Name Type Description Notes
subject StatementSubject 明細項目の種別
name str
amount int 明細項目の金額
tax_rate str

Example

from payjpv2.models.statement_item_response import StatementItemResponse

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

# convert the object into a dict
statement_item_response_dict = statement_item_response_instance.to_dict()
# create an instance of StatementItemResponse from a dict
statement_item_response_from_dict = StatementItemResponse.from_dict(statement_item_response_dict)

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