LiveKit ESP32 SDK
Loading...
Searching...
No Matches
livekit_sandbox.h
1#pragma once
2
3#include <stdbool.h>
4
5#ifdef __cplusplus
6extern "C" {
7#endif
8
10typedef struct {
13
16 char *room_name;
17
22
24typedef struct {
27
29 char *token;
30
32 char *room_name;
33
37
43bool livekit_sandbox_generate(const livekit_sandbox_options_t *options, livekit_sandbox_res_t* res);
44
46void livekit_sandbox_res_free(livekit_sandbox_res_t *result);
47
48#ifdef __cplusplus
49}
50#endif
char * participant_name
Generated token's participant identity.
Definition livekit_sandbox.h:35
char * participant_name
The participant identity the generated token will have.
Definition livekit_sandbox.h:20
char * server_url
The LiveKit Cloud URL for the associated project.
Definition livekit_sandbox.h:26
char * room_name
The room name the generated token will have.
Definition livekit_sandbox.h:16
char * token
The access token for the participant. Valid for 15 minutes.
Definition livekit_sandbox.h:29
char * room_name
Generated token's room name.
Definition livekit_sandbox.h:32
char * sandbox_id
The sandbox ID.
Definition livekit_sandbox.h:12
Request options for generating a sandbox token.
Definition livekit_sandbox.h:10
Response containing the generated token details.
Definition livekit_sandbox.h:24