Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 982 Bytes

File metadata and controls

29 lines (20 loc) · 982 Bytes

UsersPatchRequest

Properties

Name Type Description Notes
properties PatchUserProperties

Example

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)

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