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