Sha256: b42abb5c7bbeb73cc8175f08ea7bd10ec6db59ad8556ec7ac6efd44e5e11472c

Contents?: true

Size: 1.53 KB

Versions: 5

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 asset
#       PAYMENT_NOT_AUTHORIZED = -7, // destination not authorized to hold asset
#       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

5 entries across 5 versions & 2 rubygems

Version Path
stellar-base-0.5.0 generated/stellar/payment_result_code.rb
stellar-base-0.4.0 generated/stellar/payment_result_code.rb
open-core-0.3.0 generated/stellar/payment_result_code.rb
stellar-base-0.3.0 generated/stellar/payment_result_code.rb
stellar-base-0.2.0 generated/stellar/payment_result_code.rb