# Automatically generated by pb2py # fmt: off from .. import protobuf as p from .EosAuthorization import EosAuthorization class EosActionUpdateAuth(p.MessageType): def __init__( self, account: int = None, permission: int = None, parent: int = None, auth: EosAuthorization = None, ) -> None: self.account = account self.permission = permission self.parent = parent self.auth = auth @classmethod def get_fields(cls): return { 1: ('account', p.UVarintType, 0), 2: ('permission', p.UVarintType, 0), 3: ('parent', p.UVarintType, 0), 4: ('auth', EosAuthorization, 0), }