Sha256: 4a70a670e924265e5422ae787960131c396f95634718b9a88a3094bace1f4380
Contents?: true
Size: 661 Bytes
Versions: 11
Compression:
Stored size: 661 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 PaymentOp # { # AccountID destination; // recipient of the payment # Currency currency; // what they end up with # int64 amount; // amount they end up with # }; # # =========================================================================== module Stellar class PaymentOp < XDR::Struct attribute :destination, AccountID attribute :currency, Currency attribute :amount, Int64 end end
Version data entries
11 entries across 11 versions & 1 rubygems