Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

File metadata and controls

31 lines (22 loc) · 1.2 KB

FlagEventCollectionRep

Properties

Name Type Description Notes
total_count int The total number of flag events
items List[FlagEventRep] A list of flag events
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.flag_event_collection_rep import FlagEventCollectionRep

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

# convert the object into a dict
flag_event_collection_rep_dict = flag_event_collection_rep_instance.to_dict()
# create an instance of FlagEventCollectionRep from a dict
flag_event_collection_rep_from_dict = FlagEventCollectionRep.from_dict(flag_event_collection_rep_dict)

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