Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 1.08 KB

File metadata and controls

29 lines (20 loc) · 1.08 KB

CustomEventMobileAppAlertRule

Properties

Name Type Description Notes
custom_event_name str

Example

from instana_client.models.custom_event_mobile_app_alert_rule import CustomEventMobileAppAlertRule

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

# convert the object into a dict
custom_event_mobile_app_alert_rule_dict = custom_event_mobile_app_alert_rule_instance.to_dict()
# create an instance of CustomEventMobileAppAlertRule from a dict
custom_event_mobile_app_alert_rule_from_dict = CustomEventMobileAppAlertRule.from_dict(custom_event_mobile_app_alert_rule_dict)

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