Sha256: 49601c231488a217b2c5ee0ecfe632cc7b4c5b0a2c354767f468a7d2e28b7f23
Contents?: true
Size: 1.23 KB
Versions: 10
Compression:
Stored size: 1.23 KB
Contents
module AsposeCellsCloud # class CellsDocumentProperty < BaseObject attr_accessor :name, :value, :built_in, :link # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'name' => :'Name', # :'value' => :'Value', # :'built_in' => :'BuiltIn', # :'link' => :'link' } end # attribute type def self.swagger_types { :'name' => :'String', :'value' => :'String', :'built_in' => :'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[:'Value'] self.value = attributes[:'Value'] end if attributes[:'BuiltIn'] self.built_in = attributes[:'BuiltIn'] end if attributes[:'link'] self.link = attributes[:'link'] end end end end
Version data entries
10 entries across 10 versions & 1 rubygems