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