Sha256: 95d92bb6318eb225fb0dc37754ff65008a94defd6b496740c11a3c7706aa4ae0

Contents?: true

Size: 1.53 KB

Versions: 2

Compression:

Stored size: 1.53 KB

Contents

# This code was automatically generated using xdrgen
# DO NOT EDIT or your changes may be overwritten

require 'xdr'

# === xdr source ============================================================
#
#   enum PaymentResultCode
#   {
#       // codes considered as "success" for the operation
#       PAYMENT_SUCCESS = 0, // payment successfuly completed
#   
#       // codes considered as "failure" for the operation
#       PAYMENT_MALFORMED = -1,          // bad input
#       PAYMENT_UNDERFUNDED = -2,        // not enough funds in source account
#       PAYMENT_SRC_NO_TRUST = -3,       // no trust line on source account
#       PAYMENT_SRC_NOT_AUTHORIZED = -4, // source not authorized to transfer
#       PAYMENT_NO_DESTINATION = -5,     // destination account does not exist
#       PAYMENT_NO_TRUST = -6, // destination missing a trust line for currency
#       PAYMENT_NOT_AUTHORIZED = -7, // destination not authorized to hold currency
#       PAYMENT_LINE_FULL = -8       // destination would go above their limit
#   };
#
# ===========================================================================
module Stellar
  class PaymentResultCode < XDR::Enum
    member :payment_success,            0
    member :payment_malformed,          -1
    member :payment_underfunded,        -2
    member :payment_src_no_trust,       -3
    member :payment_src_not_authorized, -4
    member :payment_no_destination,     -5
    member :payment_no_trust,           -6
    member :payment_not_authorized,     -7
    member :payment_line_full,          -8

    seal
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
stellar-base-0.0.20 generated/stellar/payment_result_code.rb
stellar-base-0.0.19 generated/stellar/payment_result_code.rb