Sha256: 2c8890e9cd6656ca5ae9171179f30026900f84042e136ccbff448a22f2f087d1
Contents?: true
Size: 1.16 KB
Versions: 10
Compression:
Stored size: 1.16 KB
Contents
module AsposeCellsCloud # class Hyperlinks < BaseObject attr_accessor :count, :hyperlink_list, :link # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'count' => :'Count', # :'hyperlink_list' => :'HyperlinkList', # :'link' => :'link' } end # attribute type def self.swagger_types { :'count' => :'Integer', :'hyperlink_list' => :'Array<LinkElement>', :'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[:'Count'] self.count = attributes[:'Count'] end if attributes[:'HyperlinkList'] if (value = attributes[:'HyperlinkList']).is_a?(Array) self.hyperlink_list = value end end if attributes[:'link'] self.link = attributes[:'link'] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems