thousandeyes-sdk-python/tests_api/docs/TestCustomHeaders.md
2023-12-11 09:29:15 +00:00

1.1 KiB

TestCustomHeaders

Properties

Name Type Description Notes
root TestCustomHeadersRoot [optional]
domains **Dict[str, MapItem]** Use these HTTP headers for the specified domains. [optional]
all TestCustomHeadersAll [optional]

Example

from tests_api.models.test_custom_headers import TestCustomHeaders

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

# convert the object into a dict
test_custom_headers_dict = test_custom_headers_instance.to_dict()
# create an instance of TestCustomHeaders from a dict
test_custom_headers_form_dict = test_custom_headers.from_dict(test_custom_headers_dict)

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