Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.04 KB

GetMetricSeriesFromParameter.md

File metadata and controls

28 lines (19 loc) · 1.04 KB

GetMetricSeriesFromParameter

Properties

Name Type Description Notes

Example

from waylay.services.data.models.get_metric_series_from_parameter import GetMetricSeriesFromParameter

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

# convert the object into a dict
get_metric_series_from_parameter_dict = get_metric_series_from_parameter_instance.to_dict()
# create an instance of GetMetricSeriesFromParameter from a dict
get_metric_series_from_parameter_form_dict = get_metric_series_from_parameter.from_dict(get_metric_series_from_parameter_dict)

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