mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-05-08 09:58:46 +00:00
20 lines
433 B
Python
20 lines
433 B
Python
# Automatically generated by pb2py
|
|
# fmt: off
|
|
import protobuf as p
|
|
|
|
|
|
class OntologySignedOntIdAddAttributes(p.MessageType):
|
|
MESSAGE_WIRE_TYPE = 361
|
|
FIELDS = {
|
|
1: ('signature', p.BytesType, 0),
|
|
2: ('payload', p.BytesType, 0),
|
|
}
|
|
|
|
def __init__(
|
|
self,
|
|
signature: bytes = None,
|
|
payload: bytes = None,
|
|
) -> None:
|
|
self.signature = signature
|
|
self.payload = payload
|