Sha256: 2b6575f037fb3e4b494876aef08cd69cc13d3f56981c097450fca5aaf3b5b649

Contents?: true

Size: 959 Bytes

Versions: 3

Compression:

Stored size: 959 Bytes

Contents

# This code was automatically generated using xdrgen
# DO NOT EDIT or your changes may be overwritten

require 'xdr'

# === xdr source ============================================================
#
#   struct ProofEntry
#   {
#       AccountID accountID;
#       uint64 lotID;
#       uint64 proofID;
#       uint64 bankID;
#       uint32 quantity;
#   
#       string proof<1000>;
#   
#       // reserved for future use
#       union switch (int v)
#       {
#       case 0:
#           void;
#       }
#       ext;
#   };
#
# ===========================================================================
module Stellar
  class ProofEntry < XDR::Struct
    include XDR::Namespace

    autoload :Ext

    attribute :account_id, AccountID
    attribute :lot_id,     Uint64
    attribute :proof_id,   Uint64
    attribute :bank_id,    Uint64
    attribute :quantity,   Uint32
    attribute :proof,      XDR::String[1000]
    attribute :ext,        Ext
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
auction-ruby-base-0.1.3 generated/stellar/proof_entry.rb
auction-ruby-base-0.1.2 generated/stellar/proof_entry.rb
auction-ruby-base-0.1.1 generated/stellar/proof_entry.rb