Skip to content

Latest commit

 

History

History
39 lines (31 loc) · 1.68 KB

File metadata and controls

39 lines (31 loc) · 1.68 KB

UpdateRoomRequest

The request parameters for updating a room.

Properties

Name Type Description Notes
title str The room title. [optional]
quota int The room quota. [optional]
indexing bool Specifies whether to create a third-party room with indexing. [optional]
deny_download bool Specifies whether to deny downloads from the third-party room. [optional]
lifetime RoomDataLifetimeDto [optional]
watermark WatermarkRequestDto [optional]
logo LogoRequest [optional]
tags List[str] The list of tags. [optional]
color str The room color. [optional]
cover str The room cover. [optional]
chat_settings ChatSettings [optional]

Example

from docspace_api_sdk.models.update_room_request import UpdateRoomRequest

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

# convert the object into a dict
update_room_request_dict = update_room_request_instance.to_dict()
# create an instance of UpdateRoomRequest from a dict
update_room_request_from_dict = UpdateRoomRequest.from_dict(update_room_request_dict)

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