Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 896 Bytes

File metadata and controls

32 lines (23 loc) · 896 Bytes

Website

Properties

Name Type Description Notes
app_name str [optional]
business_criticality int [optional]
id str
name str

Example

from instana_client.models.website import Website

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

# convert the object into a dict
website_dict = website_instance.to_dict()
# create an instance of Website from a dict
website_from_dict = Website.from_dict(website_dict)

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