2019-05-14 14:22:23 +00:00
|
|
|
# Automatically generated by pb2py
|
|
|
|
# fmt: off
|
|
|
|
from .. import protobuf as p
|
|
|
|
|
|
|
|
from .MoneroTransactionSourceEntry import MoneroTransactionSourceEntry
|
|
|
|
|
2019-07-03 13:02:50 +00:00
|
|
|
if __debug__:
|
|
|
|
try:
|
|
|
|
from typing import Dict, List, Optional
|
2019-08-02 17:06:01 +00:00
|
|
|
from typing_extensions import Literal # noqa: F401
|
2019-07-03 13:02:50 +00:00
|
|
|
except ImportError:
|
|
|
|
Dict, List, Optional = None, None, None # type: ignore
|
|
|
|
|
2019-05-14 14:22:23 +00:00
|
|
|
|
|
|
|
class MoneroTransactionInputViniRequest(p.MessageType):
|
|
|
|
MESSAGE_WIRE_TYPE = 507
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
src_entr: MoneroTransactionSourceEntry = None,
|
|
|
|
vini: bytes = None,
|
|
|
|
vini_hmac: bytes = None,
|
|
|
|
pseudo_out: bytes = None,
|
|
|
|
pseudo_out_hmac: bytes = None,
|
|
|
|
) -> None:
|
|
|
|
self.src_entr = src_entr
|
|
|
|
self.vini = vini
|
|
|
|
self.vini_hmac = vini_hmac
|
|
|
|
self.pseudo_out = pseudo_out
|
|
|
|
self.pseudo_out_hmac = pseudo_out_hmac
|
|
|
|
|
|
|
|
@classmethod
|
2019-07-03 13:02:50 +00:00
|
|
|
def get_fields(cls) -> Dict:
|
2019-05-14 14:22:23 +00:00
|
|
|
return {
|
|
|
|
1: ('src_entr', MoneroTransactionSourceEntry, 0),
|
|
|
|
2: ('vini', p.BytesType, 0),
|
|
|
|
3: ('vini_hmac', p.BytesType, 0),
|
|
|
|
4: ('pseudo_out', p.BytesType, 0),
|
|
|
|
5: ('pseudo_out_hmac', p.BytesType, 0),
|
|
|
|
}
|