Name | Type | Description | Notes |
---|---|---|---|
username | str | Username of request caller | [optional] |
sites | List[Site] | List of sites | [optional] |
from formkiq_client.models.get_sites_response import GetSitesResponse
# TODO update the JSON string below
json = "{}"
# create an instance of GetSitesResponse from a JSON string
get_sites_response_instance = GetSitesResponse.from_json(json)
# print the JSON string representation of the object
print(GetSitesResponse.to_json())
# convert the object into a dict
get_sites_response_dict = get_sites_response_instance.to_dict()
# create an instance of GetSitesResponse from a dict
get_sites_response_from_dict = GetSitesResponse.from_dict(get_sites_response_dict)