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

SyntheticBulkResponse

Properties

Name Type Description Notes
error_message str [optional]
id str [optional]
status str [optional]

Example

from instana_client.models.synthetic_bulk_response import SyntheticBulkResponse

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

# convert the object into a dict
synthetic_bulk_response_dict = synthetic_bulk_response_instance.to_dict()
# create an instance of SyntheticBulkResponse from a dict
synthetic_bulk_response_from_dict = SyntheticBulkResponse.from_dict(synthetic_bulk_response_dict)

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