| Name | Type | Description | Notes |
|---|---|---|---|
| items | List[FlagLinkRep] | An array of flag links | |
| links | Dict[str, Link] | The location and content type of related resources |
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)