Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.11 KB

File metadata and controls

33 lines (24 loc) · 1.11 KB

Distribution

Properties

Name Type Description Notes
id str The ID (UUID) of the Distribution.
type str The type of the resource.
href str The URL of the Distribution.
metadata DistributionMetadata
properties DistributionProperties

Example

from ionoscloud_cdn.models.distribution import Distribution

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

# convert the object into a dict
distribution_dict = distribution_instance.to_dict()
# create an instance of Distribution from a dict
distribution_from_dict = Distribution.from_dict(distribution_dict)

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