Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

File metadata and controls

31 lines (22 loc) · 1.04 KB

SyntheticTestCICD

Properties

Name Type Description Notes
customization SyntheticTestCICDCustomization
run_type str [optional]
test_id str

Example

from instana_client.models.synthetic_test_cicd import SyntheticTestCICD

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

# convert the object into a dict
synthetic_test_cicd_dict = synthetic_test_cicd_instance.to_dict()
# create an instance of SyntheticTestCICD from a dict
synthetic_test_cicd_from_dict = SyntheticTestCICD.from_dict(synthetic_test_cicd_dict)

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