mirror of
https://github.com/trezor/trezor-firmware.git
synced 2024-11-19 14:08:11 +00:00
20 lines
367 B
Python
20 lines
367 B
Python
|
# Automatically generated by pb2py
|
||
|
# fmt: off
|
||
|
from .. import protobuf as p
|
||
|
|
||
|
|
||
|
class OntologyAddress(p.MessageType):
|
||
|
MESSAGE_WIRE_TYPE = 351
|
||
|
|
||
|
def __init__(
|
||
|
self,
|
||
|
address: str = None,
|
||
|
) -> None:
|
||
|
self.address = address
|
||
|
|
||
|
@classmethod
|
||
|
def get_fields(cls):
|
||
|
return {
|
||
|
1: ('address', p.UnicodeType, 0),
|
||
|
}
|