# Automatically generated on 2015-04-07T10:52:07-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # enum ChangeTrustResultCode # { # // codes considered as "success" for the operation # CHANGE_TRUST_SUCCESS = 0, # // codes considered as "failure" for the operation # CHANGE_TRUST_NO_ISSUER = 1, // could not find issuer # CHANGE_TRUST_INVALID_LIMIT = 2, // cannot drop limit below balance # CHANGE_TRUST_LOW_RESERVE = 3 // not enough funds to create a new trust line # }; # # =========================================================================== module Stellar class ChangeTrustResultCode < XDR::Enum member :change_trust_success, 0 member :change_trust_no_issuer, 1 member :change_trust_invalid_limit, 2 member :change_trust_low_reserve, 3 seal end end