Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 844 Bytes

File metadata and controls

31 lines (22 loc) · 844 Bytes

Website

Properties

Name Type Description Notes
app_name str [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]