Class: AsposeSlidesCloud::SlideCommentBase

Inherits:
BaseObject
  • Object
show all
Defined in:
lib/aspose_slides_cloud/models/slide_comment_base.rb

Overview

Represents slide comment

Direct Known Subclasses

SlideComment, SlideModernComment

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Methods inherited from BaseObject

#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ SlideCommentBase

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 66

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}) { |(k, v), h| h[k.to_sym] = v }

  if attributes.has_key?(:'Author')
    self.author = attributes[:'Author']
  end

  if attributes.has_key?(:'Text')
    self.text = attributes[:'Text']
  end

  if attributes.has_key?(:'CreatedTime')
    self.created_time = attributes[:'CreatedTime']
  end

  if attributes.has_key?(:'ChildComments')
    if (value = attributes[:'ChildComments']).is_a?(Array)
      self.child_comments = value
    end
  end

  if attributes.has_key?(:'Type')
    self.type = attributes[:'Type']
  end
end

Instance Attribute Details

#authorObject

Author.



29
30
31
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 29

def author
  @author
end

#child_commentsObject

Child comments.



38
39
40
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 38

def child_comments
  @child_comments
end

#created_timeObject

Creation time.



35
36
37
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 35

def created_time
  @created_time
end

#textObject

Text.



32
33
34
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 32

def text
  @text
end

#typeObject

Returns the value of attribute type.



40
41
42
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 40

def type
  @type
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



43
44
45
46
47
48
49
50
51
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 43

def self.attribute_map
  {
    :'author' => :'Author',
    :'text' => :'Text',
    :'created_time' => :'CreatedTime',
    :'child_comments' => :'ChildComments',
    :'type' => :'Type',
  }
end

.swagger_typesObject

Attribute type mapping.



54
55
56
57
58
59
60
61
62
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 54

def self.swagger_types
  {
    :'author' => :'String',
    :'text' => :'String',
    :'created_time' => :'String',
    :'child_comments' => :'Array<SlideCommentBase>',
    :'type' => :'String',
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



122
123
124
125
126
127
128
129
130
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 122

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      author == o.author &&
      text == o.text &&
      created_time == o.created_time &&
      child_comments == o.child_comments &&
      type == o.type
end

#eql?(o) ⇒ Boolean

Parameters:

  • Object (Object)

    to be compared

Returns:

  • (Boolean)

See Also:

  • `==` method


134
135
136
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 134

def eql?(o)
  self == o
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



140
141
142
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 140

def hash
  [author, text, created_time, child_comments, type].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properties with the reasons



97
98
99
100
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 97

def list_invalid_properties
  invalid_properties = Array.new
  invalid_properties
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



104
105
106
107
108
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 104

def valid?
  type_validator = EnumAttributeValidator.new('String', ['Regular', 'Modern'])
  return false unless type_validator.valid?(@type)
  true
end