Files
csdemo/Protobufs/webui/service_fovasvideo.proto
2024-09-15 05:09:15 +02:00

16 lines
387 B
Protocol Buffer

message CFovasVideo_ClientGetOPFSettings_Request {
optional uint32 app_id = 1;
optional uint32 client_cellid = 2;
}
message CFovasVideo_ClientGetOPFSettings_Response {
optional uint32 app_id = 1;
optional string opf_settings = 2;
}
service FovasVideo {
rpc ClientGetOPFSettings (.CFovasVideo_ClientGetOPFSettings_Request) returns (.CFovasVideo_ClientGetOPFSettings_Response);
}