Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 994 Bytes

CompanyPlanUsage.md

File metadata and controls

30 lines (21 loc) · 994 Bytes

CompanyPlanUsage

Properties

Name Type Description Notes
limit float Plan limit [optional]
usage float Plan usage [optional]

Example

from fattureincloud_python_sdk.models.company_plan_usage import CompanyPlanUsage

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

# convert the object into a dict
company_plan_usage_dict = company_plan_usage_instance.to_dict()
# create an instance of CompanyPlanUsage from a dict
company_plan_usage_from_dict = CompanyPlanUsage.from_dict(company_plan_usage_dict)

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