Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1018 Bytes

File metadata and controls

30 lines (21 loc) · 1018 Bytes

FilterInterface

Properties

Name Type Description Notes
rbac_restrictions RbacRestrictions [optional]
time_config TimeConfig [optional]

Example

from instana_client.models.filter_interface import FilterInterface

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

# convert the object into a dict
filter_interface_dict = filter_interface_instance.to_dict()
# create an instance of FilterInterface from a dict
filter_interface_from_dict = FilterInterface.from_dict(filter_interface_dict)

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