| Name | Type | Description | Notes |
|---|---|---|---|
| response | UserInfo | [optional] | |
| count | int | [optional] | |
| links | List[ActiveConnectionsWrapperLinksInner] | [optional] | |
| status | int | [optional] | |
| status_code | int | [optional] |
from docspace_api_sdk.models.user_info_wrapper import UserInfoWrapper
# TODO update the JSON string below
json = "{}"
# create an instance of UserInfoWrapper from a JSON string
user_info_wrapper_instance = UserInfoWrapper.from_json(json)
# print the JSON string representation of the object
print(UserInfoWrapper.to_json())
# convert the object into a dict
user_info_wrapper_dict = user_info_wrapper_instance.to_dict()
# create an instance of UserInfoWrapper from a dict
user_info_wrapper_from_dict = UserInfoWrapper.from_dict(user_info_wrapper_dict)