mirror of
https://github.com/trezor/trezor-firmware.git
synced 2025-07-02 12:52:34 +00:00
21 lines
451 B
Python
21 lines
451 B
Python
# Automatically generated by pb2py
|
|
from .. import protobuf as p
|
|
|
|
|
|
class StellarAssetType(p.MessageType):
|
|
FIELDS = {
|
|
1: ('type', p.UVarintType, 0),
|
|
2: ('code', p.UnicodeType, 0),
|
|
3: ('issuer', p.BytesType, 0),
|
|
}
|
|
|
|
def __init__(
|
|
self,
|
|
type: int = None,
|
|
code: str = None,
|
|
issuer: bytes = None
|
|
) -> None:
|
|
self.type = type
|
|
self.code = code
|
|
self.issuer = issuer
|