Class: AsposeSlidesCloud::SlideCommentBase
- Inherits:
-
BaseObject
- Object
- BaseObject
- AsposeSlidesCloud::SlideCommentBase
- Defined in:
- lib/aspose_slides_cloud/models/slide_comment_base.rb
Overview
Represents slide comment
Direct Known Subclasses
Instance Attribute Summary collapse
-
#author ⇒ Object
Author.
-
#child_comments ⇒ Object
Child comments.
-
#created_time ⇒ Object
Creation time.
-
#text ⇒ Object
Text.
-
#type ⇒ Object
Returns the value of attribute type.
Class Method Summary collapse
-
.attribute_map ⇒ Object
Attribute mapping from ruby-style variable name to JSON key.
-
.swagger_types ⇒ Object
Attribute type mapping.
Instance Method Summary collapse
-
#==(o) ⇒ Object
Checks equality by comparing each attribute.
- #eql?(o) ⇒ Boolean
-
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
-
#initialize(attributes = {}) ⇒ SlideCommentBase
constructor
Initializes the object.
-
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons.
-
#valid? ⇒ Boolean
Check to see if the all the properties in the model are valid.
Methods inherited from BaseObject
#_deserialize, #_to_hash, #build_from_hash, #to_body, #to_hash, #to_s
Constructor Details
#initialize(attributes = {}) ⇒ SlideCommentBase
Initializes the object
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. = 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
#author ⇒ Object
Author.
29 30 31 |
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 29 def @author end |
#child_comments ⇒ Object
Child comments.
38 39 40 |
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 38 def child_comments @child_comments end |
#created_time ⇒ Object
Creation time.
35 36 37 |
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 35 def created_time @created_time end |
#text ⇒ Object
Text.
32 33 34 |
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 32 def text @text end |
#type ⇒ Object
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_map ⇒ Object
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_types ⇒ Object
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.
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 && == o. && text == o.text && created_time == o.created_time && child_comments == o.child_comments && type == o.type end |
#eql?(o) ⇒ Boolean
134 135 136 |
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 134 def eql?(o) self == o end |
#hash ⇒ Fixnum
Calculates hash code according to all attributes.
140 141 142 |
# File 'lib/aspose_slides_cloud/models/slide_comment_base.rb', line 140 def hash [, text, created_time, child_comments, type].hash end |
#list_invalid_properties ⇒ Object
Show invalid properties with the reasons. Usually used together with valid?
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
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 |