1
0
mirror of https://github.com/trezor/trezor-firmware.git synced 2024-10-18 05:49:11 +00:00
trezor-firmware/python/trezorlib/messages/StellarPathPaymentOp.py
matejcik cf396e3661 python: return generated files to git
This separates the regeneration step from the build/install step.
This is to simplify bootstrapping: trezorlib is needed in several
build/test steps, and bound to be needed in more. It should be
usable and installable straight from the checkout.
2019-05-17 15:09:58 +02:00

46 lines
1.4 KiB
Python

# Automatically generated by pb2py
# fmt: off
from .. import protobuf as p
from .StellarAssetType import StellarAssetType
if __debug__:
try:
from typing import List
except ImportError:
List = None # type: ignore
class StellarPathPaymentOp(p.MessageType):
MESSAGE_WIRE_TYPE = 212
def __init__(
self,
source_account: str = None,
send_asset: StellarAssetType = None,
send_max: int = None,
destination_account: str = None,
destination_asset: StellarAssetType = None,
destination_amount: int = None,
paths: List[StellarAssetType] = None,
) -> None:
self.source_account = source_account
self.send_asset = send_asset
self.send_max = send_max
self.destination_account = destination_account
self.destination_asset = destination_asset
self.destination_amount = destination_amount
self.paths = paths if paths is not None else []
@classmethod
def get_fields(cls):
return {
1: ('source_account', p.UnicodeType, 0),
2: ('send_asset', StellarAssetType, 0),
3: ('send_max', p.SVarintType, 0),
4: ('destination_account', p.UnicodeType, 0),
5: ('destination_asset', StellarAssetType, 0),
6: ('destination_amount', p.SVarintType, 0),
7: ('paths', StellarAssetType, p.FLAG_REPEATED),
}