Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.19 KB

File metadata and controls

32 lines (23 loc) · 1.19 KB

SyntheticConfigurationUpdate

Properties

Name Type Description Notes
mark_synthetic_call bool [optional]
retries int [optional]
retry_interval int [optional]
timeout str [optional]

Example

from instana_client.models.synthetic_configuration_update import SyntheticConfigurationUpdate

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

# convert the object into a dict
synthetic_configuration_update_dict = synthetic_configuration_update_instance.to_dict()
# create an instance of SyntheticConfigurationUpdate from a dict
synthetic_configuration_update_from_dict = SyntheticConfigurationUpdate.from_dict(synthetic_configuration_update_dict)

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