mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
41 lines
974 B
Python
41 lines
974 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
if __debug__:
|
||
|
try:
|
||
|
from typing import List
|
||
|
except ImportError:
|
||
|
List = None # type: ignore
|
||
|
|
||
|
|
||
|
class DebugMoneroDiagRequest(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 546
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
ins: int = None,
|
||
|
p1: int = None,
|
||
|
p2: int = None,
|
||
|
pd: List[int] = None,
|
||
|
data1: bytes = None,
|
||
|
data2: bytes = None,
|
||
|
) -> None:
|
||
|
self.ins = ins
|
||
|
self.p1 = p1
|
||
|
self.p2 = p2
|
||
|
self.pd = pd if pd is not None else []
|
||
|
self.data1 = data1
|
||
|
self.data2 = data2
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('ins', p.UVarintType, 0),
|
||
|
2: ('p1', p.UVarintType, 0),
|
||
|
3: ('p2', p.UVarintType, 0),
|
||
|
4: ('pd', p.UVarintType, p.FLAG_REPEATED),
|
||
|
5: ('data1', p.BytesType, 0),
|
||
|
6: ('data2', p.BytesType, 0),
|
||
|
}
|