Source code for stellar_sdk.xdr.path_payment_strict_send_result_code

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

import base64
from enum import IntEnum

from xdrlib3 import Packer, Unpacker

__all__ = ["PathPaymentStrictSendResultCode"]


[docs] class PathPaymentStrictSendResultCode(IntEnum): """ XDR Source Code:: enum PathPaymentStrictSendResultCode { // codes considered as "success" for the operation PATH_PAYMENT_STRICT_SEND_SUCCESS = 0, // success // codes considered as "failure" for the operation PATH_PAYMENT_STRICT_SEND_MALFORMED = -1, // bad input PATH_PAYMENT_STRICT_SEND_UNDERFUNDED = -2, // not enough funds in source account PATH_PAYMENT_STRICT_SEND_SRC_NO_TRUST = -3, // no trust line on source account PATH_PAYMENT_STRICT_SEND_SRC_NOT_AUTHORIZED = -4, // source not authorized to transfer PATH_PAYMENT_STRICT_SEND_NO_DESTINATION = -5, // destination account does not exist PATH_PAYMENT_STRICT_SEND_NO_TRUST = -6, // dest missing a trust line for asset PATH_PAYMENT_STRICT_SEND_NOT_AUTHORIZED = -7, // dest not authorized to hold asset PATH_PAYMENT_STRICT_SEND_LINE_FULL = -8, // dest would go above their limit PATH_PAYMENT_STRICT_SEND_NO_ISSUER = -9, // missing issuer on one asset PATH_PAYMENT_STRICT_SEND_TOO_FEW_OFFERS = -10, // not enough offers to satisfy path PATH_PAYMENT_STRICT_SEND_OFFER_CROSS_SELF = -11, // would cross one of its own offers PATH_PAYMENT_STRICT_SEND_UNDER_DESTMIN = -12 // could not satisfy destMin }; """ PATH_PAYMENT_STRICT_SEND_SUCCESS = 0 PATH_PAYMENT_STRICT_SEND_MALFORMED = -1 PATH_PAYMENT_STRICT_SEND_UNDERFUNDED = -2 PATH_PAYMENT_STRICT_SEND_SRC_NO_TRUST = -3 PATH_PAYMENT_STRICT_SEND_SRC_NOT_AUTHORIZED = -4 PATH_PAYMENT_STRICT_SEND_NO_DESTINATION = -5 PATH_PAYMENT_STRICT_SEND_NO_TRUST = -6 PATH_PAYMENT_STRICT_SEND_NOT_AUTHORIZED = -7 PATH_PAYMENT_STRICT_SEND_LINE_FULL = -8 PATH_PAYMENT_STRICT_SEND_NO_ISSUER = -9 PATH_PAYMENT_STRICT_SEND_TOO_FEW_OFFERS = -10 PATH_PAYMENT_STRICT_SEND_OFFER_CROSS_SELF = -11 PATH_PAYMENT_STRICT_SEND_UNDER_DESTMIN = -12 def pack(self, packer: Packer) -> None: packer.pack_int(self.value) @classmethod def unpack(cls, unpacker: Unpacker) -> PathPaymentStrictSendResultCode: value = unpacker.unpack_int() return cls(value) def to_xdr_bytes(self) -> bytes: packer = Packer() self.pack(packer) return packer.get_buffer() @classmethod def from_xdr_bytes(cls, xdr: bytes) -> PathPaymentStrictSendResultCode: 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) -> PathPaymentStrictSendResultCode: xdr_bytes = base64.b64decode(xdr.encode()) return cls.from_xdr_bytes(xdr_bytes)