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