Skip to content

Commit

Permalink
rich
Browse files Browse the repository at this point in the history
  • Loading branch information
bcherry committed Sep 23, 2024
1 parent fa122ea commit c8e9436
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion protobufs/livekit_models.proto
Original file line number Diff line number Diff line change
Expand Up @@ -321,10 +321,16 @@ message RpcResponse {
string request_id = 1;
oneof value {
string payload = 2;
string error = 3;
RpcError error = 3;
}
}

message RpcError {
string name = 1;
string message = 2;
string data = 3;
}

enum ConnectionQuality {
POOR = 0;
GOOD = 1;
Expand Down

0 comments on commit c8e9436

Please sign in to comment.