Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.09 KB

ListUserCompaniesResponse.md

File metadata and controls

30 lines (20 loc) · 1.09 KB

ListUserCompaniesResponse

Properties

Name Type Description Notes
data ListUserCompaniesResponseData [optional]

Example

from fattureincloud_python_sdk.models.list_user_companies_response import ListUserCompaniesResponse

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

# convert the object into a dict
list_user_companies_response_dict = list_user_companies_response_instance.to_dict()
# create an instance of ListUserCompaniesResponse from a dict
list_user_companies_response_from_dict = ListUserCompaniesResponse.from_dict(list_user_companies_response_dict)

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