Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1019 Bytes

GetSitesResponse.md

File metadata and controls

30 lines (21 loc) · 1019 Bytes

GetSitesResponse

Properties

Name Type Description Notes
username str Username of request caller [optional]
sites List[Site] List of sites [optional]

Example

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)

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