| Name |
Type |
Description |
Notes |
from wallet.models.product_tax_behavior import ProductTaxBehavior
# TODO update the JSON string below
json = "{}"
# create an instance of ProductTaxBehavior from a JSON string
product_tax_behavior_instance = ProductTaxBehavior.from_json(json)
# print the JSON string representation of the object
print ProductTaxBehavior.to_json()
# convert the object into a dict
product_tax_behavior_dict = product_tax_behavior_instance.to_dict()
# create an instance of ProductTaxBehavior from a dict
product_tax_behavior_form_dict = product_tax_behavior.from_dict(product_tax_behavior_dict)
[Back to Model list] [Back to API list] [Back to README]