mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-05 06:12:34 +00:00
47 lines
1.3 KiB
Python
47 lines
1.3 KiB
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
from .. import protobuf as p
|
|
|
|
if __debug__:
|
|
try:
|
|
from typing import Dict, List, Optional # noqa: F401
|
|
from typing_extensions import Literal # noqa: F401
|
|
EnumTypeDebugSwipeDirection = Literal[0, 1, 2, 3]
|
|
except ImportError:
|
|
pass
|
|
|
|
|
|
class DebugLinkDecision(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 100
|
|
|
|
def __init__(
|
|
self,
|
|
*,
|
|
yes_no: Optional[bool] = None,
|
|
swipe: Optional[EnumTypeDebugSwipeDirection] = None,
|
|
input: Optional[str] = None,
|
|
x: Optional[int] = None,
|
|
y: Optional[int] = None,
|
|
wait: Optional[bool] = None,
|
|
hold_ms: Optional[int] = None,
|
|
) -> None:
|
|
self.yes_no = yes_no
|
|
self.swipe = swipe
|
|
self.input = input
|
|
self.x = x
|
|
self.y = y
|
|
self.wait = wait
|
|
self.hold_ms = hold_ms
|
|
|
|
@classmethod
|
|
def get_fields(cls) -> Dict:
|
|
return {
|
|
1: ('yes_no', p.BoolType, None),
|
|
2: ('swipe', p.EnumType("DebugSwipeDirection", (0, 1, 2, 3,)), None),
|
|
3: ('input', p.UnicodeType, None),
|
|
4: ('x', p.UVarintType, None),
|
|
5: ('y', p.UVarintType, None),
|
|
6: ('wait', p.BoolType, None),
|
|
7: ('hold_ms', p.UVarintType, None),
|
|
}
|