Sha256: 68a1247fb1fad93d2d9f1a434f72b22609b0834223dbc3cc2278c9ee7af3ca67
Contents?: true
Size: 870 Bytes
Versions: 45
Compression:
Stored size: 870 Bytes
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct ManageOfferSuccessResult # { # // offers that got claimed while creating this offer # ClaimOfferAtom offersClaimed<>; # # union switch (ManageOfferEffect effect) # { # case MANAGE_OFFER_CREATED: # case MANAGE_OFFER_UPDATED: # OfferEntry offer; # default: # void; # } # offer; # }; # # =========================================================================== module Stellar class ManageOfferSuccessResult < XDR::Struct include XDR::Namespace autoload :Offer attribute :offers_claimed, XDR::VarArray[ClaimOfferAtom] attribute :offer, Offer end end
Version data entries
45 entries across 45 versions & 3 rubygems