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