Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.12 KB

File metadata and controls

30 lines (21 loc) · 1.12 KB

FlagFollowersGetRep

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
items List[FollowFlagMember] An array of members who are following this flag

Example

from launchdarkly_api.models.flag_followers_get_rep import FlagFollowersGetRep

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

# convert the object into a dict
flag_followers_get_rep_dict = flag_followers_get_rep_instance.to_dict()
# create an instance of FlagFollowersGetRep from a dict
flag_followers_get_rep_from_dict = FlagFollowersGetRep.from_dict(flag_followers_get_rep_dict)

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