Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.11 KB

File metadata and controls

32 lines (23 loc) · 1.11 KB

InsightScores

Properties

Name Type Description Notes
period InsightPeriod
last_period InsightPeriod
scores InsightGroupScores
links Dict[str, Link] The location and content type of related resources [optional]

Example

from launchdarkly_api.models.insight_scores import InsightScores

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

# convert the object into a dict
insight_scores_dict = insight_scores_instance.to_dict()
# create an instance of InsightScores from a dict
insight_scores_from_dict = InsightScores.from_dict(insight_scores_dict)

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