Sha256: 4cb9f167fb0899deed11f6a9d96f45a00073ec7b4f4b9e352bb0d787225cbde0

Contents?: true

Size: 920 Bytes

Versions: 5

Compression:

Stored size: 920 Bytes

Contents

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

require 'xdr'

# === xdr source ============================================================
#
#   union switch (AssetType type)
#       {
#       // ASSET_TYPE_NATIVE is not allowed
#       case ASSET_TYPE_CREDIT_ALPHANUM4:
#           opaque assetCode4[4];
#   
#   	case ASSET_TYPE_CREDIT_ALPHANUM12:
#           opaque assetCode12[12];
#   
#           // add other asset types here in the future
#       }
#
# ===========================================================================
module Stellar
  class AllowTrustOp
    class Asset < XDR::Union
      switch_on AssetType, :type

      switch :asset_type_credit_alphanum4,  :asset_code4
      switch :asset_type_credit_alphanum12, :asset_code12

      attribute :asset_code4,  XDR::Opaque[4]
      attribute :asset_code12, XDR::Opaque[12]
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
stellar-base-0.1.4 generated/stellar/allow_trust_op/asset.rb
stellar-base-0.1.3 generated/stellar/allow_trust_op/asset.rb
stellar-base-0.1.2 generated/stellar/allow_trust_op/asset.rb
stellar-base-0.1.1 generated/stellar/allow_trust_op/asset.rb
stellar-base-0.1.0 generated/stellar/allow_trust_op/asset.rb