Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.13 KB

File metadata and controls

33 lines (24 loc) · 1.13 KB

GetActivities

Properties

Name Type Description Notes
order Order
pagination Pagination
tag_filter_expression TagFilterExpressionElement [optional]
time_frame TimeFrame
timeframe TimeFrame [optional]

Example

from instana_client.models.get_activities import GetActivities

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

# convert the object into a dict
get_activities_dict = get_activities_instance.to_dict()
# create an instance of GetActivities from a dict
get_activities_from_dict = GetActivities.from_dict(get_activities_dict)

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