Sha256: bf73c4dca791729ce13217a4f704f0ce3ae72e1fb5f3e93d350dc826ee4aa3b8
Contents?: true
Size: 1.77 KB
Versions: 1
Compression:
Stored size: 1.77 KB
Contents
module AsposeWordsCloud # class OfficeMathObject < BaseObject attr_accessor :content, :display_type, :justification, :math_object_type, :node_id, :link # attribute mapping from ruby-style variable name to JSON key def self.attribute_map { # :'content' => :'Content', # :'display_type' => :'DisplayType', # :'justification' => :'Justification', # :'math_object_type' => :'MathObjectType', # :'node_id' => :'NodeId', # :'link' => :'link' } end # attribute type def self.swagger_types { :'content' => :'StoryChildNodes', :'display_type' => :'String', :'justification' => :'String', :'math_object_type' => :'String', :'node_id' => :'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[:'Content'] self.content = attributes[:'Content'] end if attributes[:'DisplayType'] self.display_type = attributes[:'DisplayType'] end if attributes[:'Justification'] self.justification = attributes[:'Justification'] end if attributes[:'MathObjectType'] self.math_object_type = attributes[:'MathObjectType'] end if attributes[:'NodeId'] self.node_id = attributes[:'NodeId'] end if attributes[:'link'] self.link = attributes[:'link'] end end end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
aspose_words_cloud-1.0.3 | lib/aspose_words_cloud/models/office_math_object.rb |