# Automatically generated on 2015-04-07T10:52:07-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # enum SetOptionsResultCode # { # // codes considered as "success" for the operation # SET_OPTIONS_SUCCESS = 0, # // codes considered as "failure" for the operation # SET_OPTIONS_LOW_RESERVE = 1, // not enough funds to add a signer # SET_OPTIONS_TOO_MANY_SIGNERS = 2, // max number of signers already reached # SET_OPTIONS_BAD_FLAGS = 3 // invalid combination of clear/set flags # }; # # =========================================================================== module Stellar class SetOptionsResultCode < XDR::Enum member :set_options_success, 0 member :set_options_low_reserve, 1 member :set_options_too_many_signers, 2 member :set_options_bad_flags, 3 seal end end