Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.34 KB

File metadata and controls

31 lines (22 loc) · 1.34 KB

AnalyticsDataPointWithTrendAndInfluencedRate

Properties

Name Type Description Notes
value float
influenced_rate float
trend float

Example

from talon_one.models.analytics_data_point_with_trend_and_influenced_rate import AnalyticsDataPointWithTrendAndInfluencedRate

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

# convert the object into a dict
analytics_data_point_with_trend_and_influenced_rate_dict = analytics_data_point_with_trend_and_influenced_rate_instance.to_dict()
# create an instance of AnalyticsDataPointWithTrendAndInfluencedRate from a dict
analytics_data_point_with_trend_and_influenced_rate_from_dict = AnalyticsDataPointWithTrendAndInfluencedRate.from_dict(analytics_data_point_with_trend_and_influenced_rate_dict)

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