| Name | Type | Description | Notes |
|---|---|---|---|
| total_count | int | The total number of deployments | |
| items | List[DeploymentRep] | A list of deployments | |
| links | Dict[str, Link] | The location and content type of related resources | [optional] |
from launchdarkly_api.models.deployment_collection_rep import DeploymentCollectionRep
# TODO update the JSON string below
json = "{}"
# create an instance of DeploymentCollectionRep from a JSON string
deployment_collection_rep_instance = DeploymentCollectionRep.from_json(json)
# print the JSON string representation of the object
print(DeploymentCollectionRep.to_json())
# convert the object into a dict
deployment_collection_rep_dict = deployment_collection_rep_instance.to_dict()
# create an instance of DeploymentCollectionRep from a dict
deployment_collection_rep_from_dict = DeploymentCollectionRep.from_dict(deployment_collection_rep_dict)