Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.07 KB

File metadata and controls

29 lines (21 loc) · 1.07 KB

UpdatePhotoMemberRequest

The request parameters for updating a photo.

Properties

Name Type Description Notes
files str The avatar photo URL. [optional]

Example

from docspace_api_sdk.models.update_photo_member_request import UpdatePhotoMemberRequest

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

# convert the object into a dict
update_photo_member_request_dict = update_photo_member_request_instance.to_dict()
# create an instance of UpdatePhotoMemberRequest from a dict
update_photo_member_request_from_dict = UpdatePhotoMemberRequest.from_dict(update_photo_member_request_dict)

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