create new taxes for an existing order
Name | Type | Description | Notes |
---|---|---|---|
amount | int | The amount to be collected for tax in cents | [optional] |
description | str | description or tax's name | [optional] |
metadata | Dict[str, object] | [optional] |
from conekta.models.update_order_tax_request import UpdateOrderTaxRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UpdateOrderTaxRequest from a JSON string
update_order_tax_request_instance = UpdateOrderTaxRequest.from_json(json)
# print the JSON string representation of the object
print(UpdateOrderTaxRequest.to_json())
# convert the object into a dict
update_order_tax_request_dict = update_order_tax_request_instance.to_dict()
# create an instance of UpdateOrderTaxRequest from a dict
update_order_tax_request_from_dict = UpdateOrderTaxRequest.from_dict(update_order_tax_request_dict)