2020-09-14 11:56:11 +00:00
|
|
|
# Automatically generated by pb2py
|
|
|
|
# fmt: off
|
2021-04-21 12:20:22 +00:00
|
|
|
# isort:skip_file
|
2020-09-14 11:56:11 +00:00
|
|
|
from .. import protobuf as p
|
|
|
|
|
|
|
|
from .TxAckInputWrapper import TxAckInputWrapper
|
|
|
|
|
|
|
|
if __debug__:
|
|
|
|
try:
|
2021-03-17 19:52:14 +00:00
|
|
|
from typing import Dict, List, Optional # noqa: F401
|
2020-09-14 11:56:11 +00:00
|
|
|
from typing_extensions import Literal # noqa: F401
|
|
|
|
except ImportError:
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class TxAckInput(p.MessageType):
|
|
|
|
MESSAGE_WIRE_TYPE = 22
|
|
|
|
|
|
|
|
def __init__(
|
|
|
|
self,
|
|
|
|
*,
|
|
|
|
tx: TxAckInputWrapper,
|
|
|
|
) -> None:
|
|
|
|
self.tx = tx
|
|
|
|
|
|
|
|
@classmethod
|
|
|
|
def get_fields(cls) -> Dict:
|
|
|
|
return {
|
|
|
|
1: ('tx', TxAckInputWrapper, p.FLAG_REQUIRED),
|
|
|
|
}
|