Sha256: 5929e930ab2c6e970733ef69423e1c83b9235ee122027f6dd9de3c88c58e3103
Contents?: true
Size: 880 Bytes
Versions: 4
Compression:
Stored size: 880 Bytes
Contents
module AsposeWordsCloud # class BookmarkData < BaseObject attr_accessor :name, :text # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'name' => :'Name', # :'text' => :'Text' } end # attribute type def self.swagger_types { :'name' => :'String', :'text' => :'String' } 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 end end end
Version data entries
4 entries across 4 versions & 1 rubygems