Sha256: 1ae54d3ec0428e89a80696f237add3bbc1cd6ff4e2ddfecb4f091d2234647996
Contents?: true
Size: 1.42 KB
Versions: 3
Compression:
Stored size: 1.42 KB
Contents
# Automatically generated on 2015-06-08T11:39:15-07:00 # DO NOT EDIT or your changes may be overwritten require 'xdr' # === xdr source ============================================================ # # struct Operation # { # // sourceAccount is the account used to run the operation # // if not set, the runtime defaults to "account" specified at # // the transaction level # AccountID* sourceAccount; # # union switch (OperationType type) # { # case CREATE_ACCOUNT: # CreateAccountOp createAccountOp; # case PAYMENT: # PaymentOp paymentOp; # case PATH_PAYMENT: # PathPaymentOp pathPaymentOp; # case MANAGE_OFFER: # ManageOfferOp manageOfferOp; # case CREATE_PASSIVE_OFFER: # CreatePassiveOfferOp createPassiveOfferOp; # case SET_OPTIONS: # SetOptionsOp setOptionsOp; # case CHANGE_TRUST: # ChangeTrustOp changeTrustOp; # case ALLOW_TRUST: # AllowTrustOp allowTrustOp; # case ACCOUNT_MERGE: # uint256 destination; # case INFLATION: # void; # } # body; # }; # # =========================================================================== module Stellar class Operation < XDR::Struct include XDR::Namespace autoload :Body attribute :source_account, XDR::Option[AccountID] attribute :body, Body end end
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
stellar-base-0.0.15 | generated/stellar/operation.rb |
stellar-base-0.0.14 | generated/stellar/operation.rb |
stellar-base-0.0.13 | generated/stellar/operation.rb |