Sha256: 80a94c4059e56401567975a115e3a787a4a77156489cf283fe00e3f8d345c52e
Contents?: true
Size: 880 Bytes
Versions: 5
Compression:
Stored size: 880 Bytes
Contents
# Automatically generated on 2015-05-13T15:00:04-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct CreateOfferSuccessResult # { # // offers that got claimed while creating this offer # ClaimOfferAtom offersClaimed<>; # # union switch (CreateOfferEffect effect) # { # case CREATE_OFFER_CREATED: # case CREATE_OFFER_UPDATED: # OfferEntry offer; # default: # void; # } # offer; # }; # # =========================================================================== module Stellar class CreateOfferSuccessResult < XDR::Struct include XDR::Namespace autoload :Offer attribute :offers_claimed, XDR::VarArray[ClaimOfferAtom] attribute :offer, Offer end end
Version data entries
5 entries across 5 versions & 1 rubygems