Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.17 KB

File metadata and controls

32 lines (23 loc) · 1.17 KB

HttpScriptConfiguration

Properties

Name Type Description Notes
file_name str [optional]
script str [optional]
script_type str [optional]
scripts MultipleScriptsConfiguration [optional]

Example

from instana_client.models.http_script_configuration import HttpScriptConfiguration

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

# convert the object into a dict
http_script_configuration_dict = http_script_configuration_instance.to_dict()
# create an instance of HttpScriptConfiguration from a dict
http_script_configuration_from_dict = HttpScriptConfiguration.from_dict(http_script_configuration_dict)

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