Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.25 KB

File metadata and controls

30 lines (21 loc) · 1.25 KB

FlagFollowersByProjEnvGetRep

Properties

Name Type Description Notes
links Dict[str, Link] The location and content type of related resources
items List[FollowersPerFlag] An array of flags and their followers [optional]

Example

from launchdarkly_api.models.flag_followers_by_proj_env_get_rep import FlagFollowersByProjEnvGetRep

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

# convert the object into a dict
flag_followers_by_proj_env_get_rep_dict = flag_followers_by_proj_env_get_rep_instance.to_dict()
# create an instance of FlagFollowersByProjEnvGetRep from a dict
flag_followers_by_proj_env_get_rep_from_dict = FlagFollowersByProjEnvGetRep.from_dict(flag_followers_by_proj_env_get_rep_dict)

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