pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
727 B
26 lines
727 B
syntax = "proto2";
|
|
import "steammessages_unified_base.proto";
|
|
|
|
option py_generic_services = true;
|
|
|
|
message CStore_GetLocalizedNameForTags_Request {
|
|
optional string language = 1;
|
|
repeated uint32 tagids = 2;
|
|
}
|
|
|
|
message CStore_GetLocalizedNameForTags_Response {
|
|
message Tag {
|
|
optional uint32 tagid = 1;
|
|
optional string english_name = 2;
|
|
optional string name = 3;
|
|
}
|
|
|
|
repeated .CStore_GetLocalizedNameForTags_Response.Tag tags = 1;
|
|
}
|
|
|
|
service Store {
|
|
option (service_description) = "A service to access store data.";
|
|
rpc GetLocalizedNameForTags (.CStore_GetLocalizedNameForTags_Request) returns (.CStore_GetLocalizedNameForTags_Response) {
|
|
option (method_description) = "Gets tag names in a different language";
|
|
}
|
|
}
|
|
|