| Name | Type | Description | Notes |
|---|---|---|---|
| properties | PatchUserProperties |
from ionoscloud_dbaas_postgres.models.users_patch_request import UsersPatchRequest
# TODO update the JSON string below
json = "{}"
# create an instance of UsersPatchRequest from a JSON string
users_patch_request_instance = UsersPatchRequest.from_json(json)
# print the JSON string representation of the object
print(UsersPatchRequest.to_json())
# convert the object into a dict
users_patch_request_dict = users_patch_request_instance.to_dict()
# create an instance of UsersPatchRequest from a dict
users_patch_request_from_dict = UsersPatchRequest.from_dict(users_patch_request_dict)