mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-12-03 04:58:25 +00:00
22 lines
429 B
Python
22 lines
429 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
|
||
|
class OntologyTxAttribute(p.MessageType):
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
usage: int = None,
|
||
|
data: bytes = None,
|
||
|
) -> None:
|
||
|
self.usage = usage
|
||
|
self.data = data
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('usage', p.UVarintType, 0),
|
||
|
2: ('data', p.BytesType, 0),
|
||
|
}
|