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.
82 lines
4.2 KiB
82 lines
4.2 KiB
# @generated by generate_proto_mypy_stubs.py. Do not edit!
|
|
import sys
|
|
from google.protobuf.descriptor import (
|
|
Descriptor as google___protobuf___descriptor___Descriptor,
|
|
EnumDescriptor as google___protobuf___descriptor___EnumDescriptor,
|
|
FileDescriptor as google___protobuf___descriptor___FileDescriptor,
|
|
)
|
|
|
|
from google.protobuf.internal.enum_type_wrapper import (
|
|
_EnumTypeWrapper as google___protobuf___internal___enum_type_wrapper____EnumTypeWrapper,
|
|
)
|
|
|
|
from google.protobuf.message import (
|
|
Message as google___protobuf___message___Message,
|
|
)
|
|
|
|
from typing import (
|
|
NewType as typing___NewType,
|
|
Optional as typing___Optional,
|
|
Text as typing___Text,
|
|
cast as typing___cast,
|
|
)
|
|
|
|
from typing_extensions import (
|
|
Literal as typing_extensions___Literal,
|
|
)
|
|
|
|
|
|
builtin___bool = bool
|
|
builtin___bytes = bytes
|
|
builtin___float = float
|
|
builtin___int = int
|
|
|
|
|
|
DESCRIPTOR: google___protobuf___descriptor___FileDescriptor = ...
|
|
|
|
GCProtoBufMsgSrcValue = typing___NewType('GCProtoBufMsgSrcValue', builtin___int)
|
|
type___GCProtoBufMsgSrcValue = GCProtoBufMsgSrcValue
|
|
GCProtoBufMsgSrc: _GCProtoBufMsgSrc
|
|
class _GCProtoBufMsgSrc(google___protobuf___internal___enum_type_wrapper____EnumTypeWrapper[GCProtoBufMsgSrcValue]):
|
|
DESCRIPTOR: google___protobuf___descriptor___EnumDescriptor = ...
|
|
GCProtoBufMsgSrc_Unspecified = typing___cast(GCProtoBufMsgSrcValue, 0)
|
|
GCProtoBufMsgSrc_FromSystem = typing___cast(GCProtoBufMsgSrcValue, 1)
|
|
GCProtoBufMsgSrc_FromSteamID = typing___cast(GCProtoBufMsgSrcValue, 2)
|
|
GCProtoBufMsgSrc_FromGC = typing___cast(GCProtoBufMsgSrcValue, 3)
|
|
GCProtoBufMsgSrc_ReplySystem = typing___cast(GCProtoBufMsgSrcValue, 4)
|
|
GCProtoBufMsgSrc_Unspecified = typing___cast(GCProtoBufMsgSrcValue, 0)
|
|
GCProtoBufMsgSrc_FromSystem = typing___cast(GCProtoBufMsgSrcValue, 1)
|
|
GCProtoBufMsgSrc_FromSteamID = typing___cast(GCProtoBufMsgSrcValue, 2)
|
|
GCProtoBufMsgSrc_FromGC = typing___cast(GCProtoBufMsgSrcValue, 3)
|
|
GCProtoBufMsgSrc_ReplySystem = typing___cast(GCProtoBufMsgSrcValue, 4)
|
|
type___GCProtoBufMsgSrc = GCProtoBufMsgSrc
|
|
|
|
class CMsgProtoBufHeader(google___protobuf___message___Message):
|
|
DESCRIPTOR: google___protobuf___descriptor___Descriptor = ...
|
|
client_steam_id: builtin___int = ...
|
|
client_session_id: builtin___int = ...
|
|
source_app_id: builtin___int = ...
|
|
job_id_source: builtin___int = ...
|
|
job_id_target: builtin___int = ...
|
|
target_job_name: typing___Text = ...
|
|
eresult: builtin___int = ...
|
|
error_message: typing___Text = ...
|
|
gc_msg_src: type___GCProtoBufMsgSrcValue = ...
|
|
gc_dir_index_source: builtin___int = ...
|
|
|
|
def __init__(self,
|
|
*,
|
|
client_steam_id : typing___Optional[builtin___int] = None,
|
|
client_session_id : typing___Optional[builtin___int] = None,
|
|
source_app_id : typing___Optional[builtin___int] = None,
|
|
job_id_source : typing___Optional[builtin___int] = None,
|
|
job_id_target : typing___Optional[builtin___int] = None,
|
|
target_job_name : typing___Optional[typing___Text] = None,
|
|
eresult : typing___Optional[builtin___int] = None,
|
|
error_message : typing___Optional[typing___Text] = None,
|
|
gc_msg_src : typing___Optional[type___GCProtoBufMsgSrcValue] = None,
|
|
gc_dir_index_source : typing___Optional[builtin___int] = None,
|
|
) -> None: ...
|
|
def HasField(self, field_name: typing_extensions___Literal[u"client_session_id",b"client_session_id",u"client_steam_id",b"client_steam_id",u"eresult",b"eresult",u"error_message",b"error_message",u"gc_dir_index_source",b"gc_dir_index_source",u"gc_msg_src",b"gc_msg_src",u"job_id_source",b"job_id_source",u"job_id_target",b"job_id_target",u"source_app_id",b"source_app_id",u"target_job_name",b"target_job_name"]) -> builtin___bool: ...
|
|
def ClearField(self, field_name: typing_extensions___Literal[u"client_session_id",b"client_session_id",u"client_steam_id",b"client_steam_id",u"eresult",b"eresult",u"error_message",b"error_message",u"gc_dir_index_source",b"gc_dir_index_source",u"gc_msg_src",b"gc_msg_src",u"job_id_source",b"job_id_source",u"job_id_target",b"job_id_target",u"source_app_id",b"source_app_id",u"target_job_name",b"target_job_name"]) -> None: ...
|
|
type___CMsgProtoBufHeader = CMsgProtoBufHeader
|
|
|