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.
29 lines
917 B
29 lines
917 B
syntax = "proto2";
|
|
import "steammessages_unified_base.proto";
|
|
|
|
option py_generic_services = true;
|
|
|
|
message CUserAccount_GetAccountLinkStatus_Request {
|
|
}
|
|
|
|
message CUserAccount_GetAccountLinkStatus_Response {
|
|
optional uint32 pwid = 1;
|
|
optional uint32 identity_verification = 2;
|
|
}
|
|
|
|
message CUserAccount_RegisterCompatTool_Request {
|
|
optional uint32 compat_tool = 1;
|
|
}
|
|
|
|
message CUserAccount_RegisterCompatTool_Response {
|
|
}
|
|
|
|
service UserAccount {
|
|
option (service_description) = "A service to get user account information";
|
|
rpc GetAccountLinkStatus (.CUserAccount_GetAccountLinkStatus_Request) returns (.CUserAccount_GetAccountLinkStatus_Response) {
|
|
option (method_description) = "Fetches account link status";
|
|
}
|
|
rpc RegisterCompatTool (.CUserAccount_RegisterCompatTool_Request) returns (.CUserAccount_RegisterCompatTool_Response) {
|
|
option (method_description) = "Register intended account usage of a tool";
|
|
}
|
|
}
|
|
|