class Icss::Meta::DataAsset
Attributes
type[RW]
overriding ruby's deprecated but still present type attr on objects
Public Instance Methods
named?(nm)
click to toggle source
# File lib/icss/protocol/data_asset.rb, line 13 def named? nm name == nm end
to_hash()
click to toggle source
# File lib/icss/protocol/data_asset.rb, line 17 def to_hash() { :name => name, :location => location, :type => type, :doc => doc } end
to_json()
click to toggle source
# File lib/icss/protocol/data_asset.rb, line 20 def to_json() to_hash.to_json ; end