Sha256: 8ceaa56c76ad5af172c56bb3d38c8ef1f5dc336214d4173dc54f1696dcf424f0
Contents?: true
Size: 1.02 KB
Versions: 4
Compression:
Stored size: 1.02 KB
Contents
module AsposeWordsCloud # class Bookmark < BaseObject attr_accessor :name, :text, :link # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'name' => :'Name', # :'text' => :'Text', # :'link' => :'link' } end # attribute type def self.swagger_types { :'name' => :'String', :'text' => :'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[:'Name'] self.name = attributes[:'Name'] end if attributes[:'Text'] self.text = attributes[:'Text'] end if attributes[:'link'] self.link = attributes[:'link'] end end end end
Version data entries
4 entries across 4 versions & 1 rubygems