Sha256: 8ad7474d2c0e075d4364370690c08255d4a7d15725b6f93a9efcf58e4b97c2aa
Contents?: true
Size: 1.04 KB
Versions: 1
Compression:
Stored size: 1.04 KB
Contents
module AsposeWordsCloud # class ChildNode < BaseObject attr_accessor :text, :node_id, :link # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'text' => :'Text', # :'node_id' => :'NodeId', # :'link' => :'link' } end # attribute type def self.swagger_types { :'text' => :'String', :'node_id' => :'String', :'link' => :'Link' } end def initialize(attributes = {}) return if !attributes.is_a?(Hash) || attributes.empty? # convert string to symbol for hash key attributes = attributes.inject({}){|memo,(k,v)| memo[k.to_sym] = v; memo} if attributes[:'Text'] self.text = attributes[:'Text'] end if attributes[:'NodeId'] self.node_id = attributes[:'NodeId'] end if attributes[:'link'] self.link = attributes[:'link'] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aspose_words_cloud-1.0.3 | lib/aspose_words_cloud/models/child_node.rb |