Source code for stellar_sdk.xdr.inflation_result

# This is an automatically generated file.
# DO NOT EDIT or your changes may be overwritten
from __future__ import annotations

import base64
from typing import List

from xdrlib3 import Packer, Unpacker

from .inflation_payout import InflationPayout
from .inflation_result_code import InflationResultCode

__all__ = ["InflationResult"]


[docs] class InflationResult: """ XDR Source Code:: union InflationResult switch (InflationResultCode code) { case INFLATION_SUCCESS: InflationPayout payouts<>; case INFLATION_NOT_TIME: void; }; """ def __init__( self, code: InflationResultCode, payouts: List[InflationPayout] = None, ) -> None: _expect_max_length = 4294967295 if payouts and len(payouts) > _expect_max_length: raise ValueError( f"The maximum length of `payouts` should be {_expect_max_length}, but got {len(payouts)}." ) self.code = code self.payouts = payouts def pack(self, packer: Packer) -> None: self.code.pack(packer) if self.code == InflationResultCode.INFLATION_SUCCESS: if self.payouts is None: raise ValueError("payouts should not be None.") packer.pack_uint(len(self.payouts)) for payouts_item in self.payouts: payouts_item.pack(packer) return if self.code == InflationResultCode.INFLATION_NOT_TIME: return @classmethod def unpack(cls, unpacker: Unpacker) -> InflationResult: code = InflationResultCode.unpack(unpacker) if code == InflationResultCode.INFLATION_SUCCESS: length = unpacker.unpack_uint() payouts = [] for _ in range(length): payouts.append(InflationPayout.unpack(unpacker)) return cls(code=code, payouts=payouts) if code == InflationResultCode.INFLATION_NOT_TIME: return cls(code=code) return cls(code=code) def to_xdr_bytes(self) -> bytes: packer = Packer() self.pack(packer) return packer.get_buffer() @classmethod def from_xdr_bytes(cls, xdr: bytes) -> InflationResult: unpacker = Unpacker(xdr) return cls.unpack(unpacker) def to_xdr(self) -> str: xdr_bytes = self.to_xdr_bytes() return base64.b64encode(xdr_bytes).decode() @classmethod def from_xdr(cls, xdr: str) -> InflationResult: xdr_bytes = base64.b64decode(xdr.encode()) return cls.from_xdr_bytes(xdr_bytes) def __hash__(self): return hash( ( self.code, self.payouts, ) ) def __eq__(self, other: object): if not isinstance(other, self.__class__): return NotImplemented return self.code == other.code and self.payouts == other.payouts def __str__(self): out = [] out.append(f"code={self.code}") out.append(f"payouts={self.payouts}") if self.payouts is not None else None return f"<InflationResult [{', '.join(out)}]>"