# Automatically generated on 2015-05-13T15:00:04-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct StellarBallot # { # uint256 nodeID; # Signature signature; # StellarBallotValue value; # }; # # =========================================================================== module Stellar class StellarBallot < XDR::Struct attribute :node_id, Uint256 attribute :signature, Signature attribute :value, StellarBallotValue end end