Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.22 KB

File metadata and controls

35 lines (26 loc) · 1.22 KB

PriceList

Properties

Name Type Description Notes
id str Price list id [optional]
name str Price list name [optional]
prices_type PriceListPricesType [optional]
is_default bool This entity is default [optional]
valid_from str Price list validity start date [optional]
valid_to str Price list validity end date [optional]
type PriceListType [optional]

Example

from fattureincloud_python_sdk.models.price_list import PriceList

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

# convert the object into a dict
price_list_dict = price_list_instance.to_dict()
# create an instance of PriceList from a dict
price_list_from_dict = PriceList.from_dict(price_list_dict)

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