Sha256: 0918530c0a0d4faa4ffc328c7b452bc0bbe1816fd6b003d152da4d6ae11136cd
Contents?: true
Size: 1.03 KB
Versions: 14
Compression:
Stored size: 1.03 KB
Contents
# This code was automatically generated using xdrgen # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # union PathPaymentStrictSendResult switch (PathPaymentStrictSendResultCode code) # { # case PATH_PAYMENT_STRICT_SEND_SUCCESS: # struct # { # ClaimOfferAtom offers<>; # SimplePaymentResult last; # } success; # case PATH_PAYMENT_STRICT_SEND_NO_ISSUER: # Asset noIssuer; // the asset that caused the error # default: # void; # }; # # =========================================================================== module Stellar class PathPaymentStrictSendResult < XDR::Union include XDR::Namespace autoload :Success switch_on PathPaymentStrictSendResultCode, :code switch :path_payment_strict_send_success, :success switch :path_payment_strict_send_no_issuer, :no_issuer switch :default attribute :success, Success attribute :no_issuer, Asset end end
Version data entries
14 entries across 14 versions & 1 rubygems