Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 857 Bytes

File metadata and controls

31 lines (22 loc) · 857 Bytes

License

Common data objects for license.

Properties

Name Type Description Notes
name str [optional]
url str [optional]

Example

from halo_client.models.license import License

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

# convert the object into a dict
license_dict = license_instance.to_dict()
# create an instance of License from a dict
license_from_dict = License.from_dict(license_dict)

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