class OpenAssets::SendAssetParam
Attributes
amount[RW]
asset_id[RW]
from[RW]
to[RW]
Public Class Methods
new(asset_id, amount, to, from = nil)
click to toggle source
# File lib/openassets/send_asset_param.rb, line 9 def initialize(asset_id, amount, to, from = nil) @asset_id = asset_id @amount = amount @to = to @from = from end