QuotaUsedPackage represents a package counting towards a user's quota
| Name | Type | Description | Notes |
|---|---|---|---|
| html_url | str | HTML URL to the package version | [optional] |
| name | str | Name of the package | [optional] |
| size | int | Size of the package version | [optional] |
| type | str | Type of the package | [optional] |
| version | str | Version of the package | [optional] |
from openapi_client.models.quota_used_package import QuotaUsedPackage
# TODO update the JSON string below
json = "{}"
# create an instance of QuotaUsedPackage from a JSON string
quota_used_package_instance = QuotaUsedPackage.from_json(json)
# print the JSON string representation of the object
print(QuotaUsedPackage.to_json())
# convert the object into a dict
quota_used_package_dict = quota_used_package_instance.to_dict()
# create an instance of QuotaUsedPackage from a dict
quota_used_package_from_dict = QuotaUsedPackage.from_dict(quota_used_package_dict)