Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 904 Bytes

File metadata and controls

28 lines (19 loc) · 904 Bytes

ProductTaxBehavior

Properties

Name Type Description Notes

Example

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]