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.
47 lines
2.1 KiB
47 lines
2.1 KiB
# @generated by generate_proto_mypy_stubs.py. Do not edit!
|
|
import sys
|
|
from google.protobuf.descriptor import (
|
|
Descriptor as google___protobuf___descriptor___Descriptor,
|
|
FileDescriptor as google___protobuf___descriptor___FileDescriptor,
|
|
)
|
|
|
|
from google.protobuf.message import (
|
|
Message as google___protobuf___message___Message,
|
|
)
|
|
|
|
from typing import (
|
|
Optional as typing___Optional,
|
|
)
|
|
|
|
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 = ...
|
|
|
|
class EncryptedAppTicket(google___protobuf___message___Message):
|
|
DESCRIPTOR: google___protobuf___descriptor___Descriptor = ...
|
|
ticket_version_no: builtin___int = ...
|
|
crc_encryptedticket: builtin___int = ...
|
|
cb_encrypteduserdata: builtin___int = ...
|
|
cb_encrypted_appownershipticket: builtin___int = ...
|
|
encrypted_ticket: builtin___bytes = ...
|
|
|
|
def __init__(self,
|
|
*,
|
|
ticket_version_no : typing___Optional[builtin___int] = None,
|
|
crc_encryptedticket : typing___Optional[builtin___int] = None,
|
|
cb_encrypteduserdata : typing___Optional[builtin___int] = None,
|
|
cb_encrypted_appownershipticket : typing___Optional[builtin___int] = None,
|
|
encrypted_ticket : typing___Optional[builtin___bytes] = None,
|
|
) -> None: ...
|
|
def HasField(self, field_name: typing_extensions___Literal[u"cb_encrypted_appownershipticket",b"cb_encrypted_appownershipticket",u"cb_encrypteduserdata",b"cb_encrypteduserdata",u"crc_encryptedticket",b"crc_encryptedticket",u"encrypted_ticket",b"encrypted_ticket",u"ticket_version_no",b"ticket_version_no"]) -> builtin___bool: ...
|
|
def ClearField(self, field_name: typing_extensions___Literal[u"cb_encrypted_appownershipticket",b"cb_encrypted_appownershipticket",u"cb_encrypteduserdata",b"cb_encrypteduserdata",u"crc_encryptedticket",b"crc_encryptedticket",u"encrypted_ticket",b"encrypted_ticket",u"ticket_version_no",b"ticket_version_no"]) -> None: ...
|
|
type___EncryptedAppTicket = EncryptedAppTicket
|
|
|