Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.02 KB

File metadata and controls

32 lines (23 loc) · 1.02 KB

FlagListingRep

Properties

Name Type Description Notes
name str The flag name
key str The flag key
links Dict[str, Link] [optional]
site Link [optional]

Example

from launchdarkly_api.models.flag_listing_rep import FlagListingRep

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

# convert the object into a dict
flag_listing_rep_dict = flag_listing_rep_instance.to_dict()
# create an instance of FlagListingRep from a dict
flag_listing_rep_from_dict = FlagListingRep.from_dict(flag_listing_rep_dict)

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