Sha256: 3e77193fa9a732a2b576b641315562f034da9925f6cff245e700ccc07386a7f3

Contents?: true

Size: 1.01 KB

Versions: 2

Compression:

Stored size: 1.01 KB

Contents

# Automatically generated on 2015-04-26T19:13:29-07:00
# DO NOT EDIT or your changes may be overwritten
        
require 'xdr'

# === xdr source ============================================================
#
#   struct SetOptionsOp
#   {
#       AccountID* inflationDest; // sets the inflation destination
#   
#       uint32* clearFlags; // which flags to clear
#       uint32* setFlags;   // which flags to set
#   
#       Thresholds* thresholds; // update the thresholds for the account
#   
#       // Add, update or remove a signer for the account
#       // signer is deleted if the weight is 0
#       Signer* signer;
#   };
#
# ===========================================================================
module Stellar
  class SetOptionsOp < XDR::Struct
    attribute :inflation_dest, XDR::Option[AccountID]
    attribute :clear_flags,    XDR::Option[Uint32]
    attribute :set_flags,      XDR::Option[Uint32]
    attribute :thresholds,     XDR::Option[Thresholds]
    attribute :signer,         XDR::Option[Signer]
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
stellar-base-0.0.3 generated/stellar/set_options_op.rb
stellar-base-0.0.2 generated/stellar/set_options_op.rb