Source code for stellar_sdk.xdr.manage_sell_offer_result

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

import base64

from xdrlib3 import Packer, Unpacker

from .manage_offer_success_result import ManageOfferSuccessResult
from .manage_sell_offer_result_code import ManageSellOfferResultCode

__all__ = ["ManageSellOfferResult"]


[docs] class ManageSellOfferResult: """ XDR Source Code:: union ManageSellOfferResult switch (ManageSellOfferResultCode code) { case MANAGE_SELL_OFFER_SUCCESS: ManageOfferSuccessResult success; case MANAGE_SELL_OFFER_MALFORMED: case MANAGE_SELL_OFFER_SELL_NO_TRUST: case MANAGE_SELL_OFFER_BUY_NO_TRUST: case MANAGE_SELL_OFFER_SELL_NOT_AUTHORIZED: case MANAGE_SELL_OFFER_BUY_NOT_AUTHORIZED: case MANAGE_SELL_OFFER_LINE_FULL: case MANAGE_SELL_OFFER_UNDERFUNDED: case MANAGE_SELL_OFFER_CROSS_SELF: case MANAGE_SELL_OFFER_SELL_NO_ISSUER: case MANAGE_SELL_OFFER_BUY_NO_ISSUER: case MANAGE_SELL_OFFER_NOT_FOUND: case MANAGE_SELL_OFFER_LOW_RESERVE: void; }; """ def __init__( self, code: ManageSellOfferResultCode, success: ManageOfferSuccessResult = None, ) -> None: self.code = code self.success = success def pack(self, packer: Packer) -> None: self.code.pack(packer) if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SUCCESS: if self.success is None: raise ValueError("success should not be None.") self.success.pack(packer) return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_MALFORMED: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SELL_NO_TRUST: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_BUY_NO_TRUST: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SELL_NOT_AUTHORIZED: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_BUY_NOT_AUTHORIZED: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_LINE_FULL: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_UNDERFUNDED: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_CROSS_SELF: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SELL_NO_ISSUER: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_BUY_NO_ISSUER: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_NOT_FOUND: return if self.code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_LOW_RESERVE: return @classmethod def unpack(cls, unpacker: Unpacker) -> ManageSellOfferResult: code = ManageSellOfferResultCode.unpack(unpacker) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SUCCESS: success = ManageOfferSuccessResult.unpack(unpacker) return cls(code=code, success=success) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_MALFORMED: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SELL_NO_TRUST: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_BUY_NO_TRUST: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SELL_NOT_AUTHORIZED: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_BUY_NOT_AUTHORIZED: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_LINE_FULL: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_UNDERFUNDED: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_CROSS_SELF: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_SELL_NO_ISSUER: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_BUY_NO_ISSUER: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_NOT_FOUND: return cls(code=code) if code == ManageSellOfferResultCode.MANAGE_SELL_OFFER_LOW_RESERVE: 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) -> ManageSellOfferResult: 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) -> ManageSellOfferResult: xdr_bytes = base64.b64decode(xdr.encode()) return cls.from_xdr_bytes(xdr_bytes) def __hash__(self): return hash( ( self.code, self.success, ) ) def __eq__(self, other: object): if not isinstance(other, self.__class__): return NotImplemented return self.code == other.code and self.success == other.success def __str__(self): out = [] out.append(f"code={self.code}") out.append(f"success={self.success}") if self.success is not None else None return f"<ManageSellOfferResult [{', '.join(out)}]>"