Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.31 KB

File metadata and controls

32 lines (24 loc) · 1.31 KB

RoomTemplateStatusDto

The room template status.

Properties

Name Type Description Notes
template_id int The room template ID.
progress float The progress of the room template creation process.
error str The error message that is sent when the room template is not created successfully. [optional]
is_completed bool Specifies whether the process of creating the room template is completed.

Example

from docspace_api_sdk.models.room_template_status_dto import RoomTemplateStatusDto

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

# convert the object into a dict
room_template_status_dto_dict = room_template_status_dto_instance.to_dict()
# create an instance of RoomTemplateStatusDto from a dict
room_template_status_dto_from_dict = RoomTemplateStatusDto.from_dict(room_template_status_dto_dict)

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