Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.11 KB

File metadata and controls

30 lines (21 loc) · 1.11 KB

FlagLinkCollectionRep

Properties

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

Example

from launchdarkly_api.models.flag_link_collection_rep import FlagLinkCollectionRep

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

# convert the object into a dict
flag_link_collection_rep_dict = flag_link_collection_rep_instance.to_dict()
# create an instance of FlagLinkCollectionRep from a dict
flag_link_collection_rep_from_dict = FlagLinkCollectionRep.from_dict(flag_link_collection_rep_dict)

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