# Automatically generated by pb2py # fmt: off from .. import protobuf as p if __debug__: try: from typing import Dict, List # noqa: F401 from typing_extensions import Literal # noqa: F401 except ImportError: pass class MoneroSubAddressIndicesList(p.MessageType): def __init__( self, *, minor_indices: List[int] = None, account: int = None, ) -> None: self.minor_indices = minor_indices if minor_indices is not None else [] self.account = account @classmethod def get_fields(cls) -> Dict: return { 1: ('account', p.UVarintType, None), 2: ('minor_indices', p.UVarintType, p.FLAG_REPEATED), }