Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.91 KB

File metadata and controls

33 lines (24 loc) · 1.91 KB

TaxRateUpdateRequest

Properties

Name Type Description Notes
active bool この税率が有効であるかどうか。無効にした場合でも、すでに設定されている定期課金などでは使用可能です。 [optional]
country Country 有効な2文字の <a href=&quot;https://ja.wikipedia.org/wiki/ISO_3166-1\" target=&quot;_blank&quot;>ISO 国コード</a> [optional]
description str 説明。管理画面内のみで表示され、顧客には表示されません。 [optional]
display_name str 表示名。顧客に表示されます。 [optional]
metadata Dict[str, MetadataValue] キーバリューの任意のデータを格納できます。20件まで登録可能で、空文字列を指定するとそのキーを削除できます。<a href=&quot;https://docs.pay.jp/v2/guide/developers/metadata\&quot;&gt;詳細はメタデータのドキュメントを参照してください。&lt;/a> [optional]

Example

from payjpv2.models.tax_rate_update_request import TaxRateUpdateRequest

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

# convert the object into a dict
tax_rate_update_request_dict = tax_rate_update_request_instance.to_dict()
# create an instance of TaxRateUpdateRequest from a dict
tax_rate_update_request_from_dict = TaxRateUpdateRequest.from_dict(tax_rate_update_request_dict)

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