Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.27 KB

WorkspaceUserGetResponse.md

File metadata and controls

33 lines (24 loc) · 1.27 KB

WorkspaceUserGetResponse

Properties

Name Type Description Notes
users List[UserSchema]
invites List[object] [optional]
limit int Max number of users to return [optional] [default to 10]
offset int Offset from the beginning of the users list [optional] [default to 0]
next str

Example

from openapi_client.models.workspace_user_get_response import WorkspaceUserGetResponse

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

# convert the object into a dict
workspace_user_get_response_dict = workspace_user_get_response_instance.to_dict()
# create an instance of WorkspaceUserGetResponse from a dict
workspace_user_get_response_from_dict = WorkspaceUserGetResponse.from_dict(workspace_user_get_response_dict)

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