The room template status.
| 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. |
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)