Post a video status update.
(sessionId: string, body: SendVideoStatusRequest)
| 55 | |
| 56 | /** Post a video status update. */ |
| 57 | sendVideo(sessionId: string, body: SendVideoStatusRequest): Promise<StatusResult> { |
| 58 | return this.client.request<StatusResult>({ |
| 59 | method: 'POST', |
| 60 | path: `/api/sessions/${encodeSegment(sessionId)}/status/send-video`, |
| 61 | body, |
| 62 | }); |
| 63 | } |
| 64 | |
| 65 | /** Delete a status update by id. */ |
| 66 | delete(sessionId: string, statusId: string): Promise<void> { |
no test coverage detected