| 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 |
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)