16 lines
387 B
Protocol Buffer
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);
|
|
}
|
|
|