Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.1 KB

File metadata and controls

30 lines (22 loc) · 1.1 KB

UserListResponseModel

Response schema that is used to list all users.

Properties

Name Type Description Notes
status str The status of the request
user_list List[str] The names of all users

Example

from actinia_openapi_python_client.models.user_list_response_model import UserListResponseModel

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

# convert the object into a dict
user_list_response_model_dict = user_list_response_model_instance.to_dict()
# create an instance of UserListResponseModel from a dict
user_list_response_model_form_dict = user_list_response_model.from_dict(user_list_response_model_dict)

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