Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.07 KB

File metadata and controls

30 lines (21 loc) · 1.07 KB

BranchCollectionRep

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
items List[BranchRep] An array of branches

Example

from launchdarkly_api.models.branch_collection_rep import BranchCollectionRep

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

# convert the object into a dict
branch_collection_rep_dict = branch_collection_rep_instance.to_dict()
# create an instance of BranchCollectionRep from a dict
branch_collection_rep_from_dict = BranchCollectionRep.from_dict(branch_collection_rep_dict)

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