Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.23 KB

File metadata and controls

31 lines (22 loc) · 1.23 KB

PullRequestCollectionRep

Properties

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]

Example

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)

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