1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-11-17 05:03:07 +00:00
trezor-firmware/python/src/trezorlib/messages/NEMMosaicSupplyChange.py

37 lines
1006 B
Python
Raw Normal View History

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
2019-07-03 13:02:50 +00:00
if __debug__:
try:
from typing import Dict, List, Optional # noqa: F401
from typing_extensions import Literal # noqa: F401
EnumTypeNEMSupplyChangeType = Literal[1, 2]
2019-07-03 13:02:50 +00:00
except ImportError:
2019-10-02 12:40:25 +00:00
pass
2019-07-03 13:02:50 +00:00
class NEMMosaicSupplyChange(p.MessageType):
def __init__(
self,
2020-09-14 11:56:11 +00:00
*,
namespace: Optional[str] = None,
mosaic: Optional[str] = None,
type: Optional[EnumTypeNEMSupplyChangeType] = None,
delta: Optional[int] = None,
) -> None:
self.namespace = namespace
self.mosaic = mosaic
self.type = type
self.delta = delta
@classmethod
2019-07-03 13:02:50 +00:00
def get_fields(cls) -> Dict:
return {
2020-09-14 11:56:11 +00:00
1: ('namespace', p.UnicodeType, None),
2: ('mosaic', p.UnicodeType, None),
3: ('type', p.EnumType("NEMSupplyChangeType", (1, 2,)), None),
2020-09-14 11:56:11 +00:00
4: ('delta', p.UVarintType, None),
}