You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
91
+
Since `rooms` are server-side entities, you may want to keep track of and persist the `roomId` in the storage medium of choice. You can reference the `roomId` to view or update the properties of a `room` object.
80
92
81
93
### Get properties of an existing room
82
94
@@ -85,49 +97,43 @@ Retrieve the details of an existing `room` by referencing the `roomId`:
85
97
```javascript
86
98
// retrieves the room with corresponding ID
87
99
constgetRoom=awaitroomsClient.getRoom(roomId);
88
-
console.log(`Retrieved Room with ID ${roomId}`);
89
100
```
90
101
91
102
### Update the lifetime of a room
92
103
93
-
The lifetime of a `room` can be modified by issuing an update request for the `ValidFrom` and `ValidUntil` parameters. A room can be valid for a maximum of six months.
104
+
The lifetime of a `room` can be modified by issuing an update request for the `ValidFrom` and `ValidUntil` parameters. A room can be valid for a maximum of six months.
0 commit comments