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.
19 lines
575 B
19 lines
575 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;
|
|
}
|
|
|
|
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";
|
|
}
|
|
}
|
|
|