Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 930 Bytes

CommunityUsage.md

File metadata and controls

28 lines (20 loc) · 930 Bytes

CommunityUsage

Properties

Name Type Description Notes
projects List[ProjectCurrentCost] [optional]

Example

from qovery.models.community_usage import CommunityUsage

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

# convert the object into a dict
community_usage_dict = community_usage_instance.to_dict()
# create an instance of CommunityUsage from a dict
community_usage_form_dict = community_usage.from_dict(community_usage_dict)

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