Sha256: a045d7cb4050fe512c2987b9ec18b175a1f4d82e921e535c930216c1e251d411
Contents?: true
Size: 1.5 KB
Versions: 4
Compression:
Stored size: 1.5 KB
Contents
module AsposeSlidesCloud # class TextItems < BaseObject attr_accessor :items, :self_uri, :alternate_links, :links # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'items' => :'Items', # :'self_uri' => :'SelfUri', # :'alternate_links' => :'AlternateLinks', # :'links' => :'Links' } end # attribute type def self.swagger_types { :'items' => :'Array<TextItem>', :'self_uri' => :'ResourceUri', :'alternate_links' => :'Array<ResourceUri>', :'links' => :'Array<ResourceUri>' } 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[:'Items'] if (value = attributes[:'Items']).is_a?(Array) self.items = value end end if attributes[:'SelfUri'] self.self_uri = attributes[:'SelfUri'] end if attributes[:'AlternateLinks'] if (value = attributes[:'AlternateLinks']).is_a?(Array) self.alternate_links = value end end if attributes[:'Links'] if (value = attributes[:'Links']).is_a?(Array) self.links = value end end end end end
Version data entries
4 entries across 4 versions & 1 rubygems