Class: LC::ArrayOp
- Inherits:
-
Object
- Object
- LC::ArrayOp
- Defined in:
- lib/leancloud/datatypes.rb
Instance Attribute Summary collapse
-
#objects ⇒ Object
Returns the value of attribute objects.
-
#operation ⇒ Object
‘{“myArray”: {“__op”: “Add”, “objects”: [“something”, “something else”] } }’.
Instance Method Summary collapse
- #eql?(other) ⇒ Boolean (also: #==)
- #hash ⇒ Object
-
#initialize(operation, objects) ⇒ ArrayOp
constructor
A new instance of ArrayOp.
- #to_h(*a) ⇒ Object (also: #as_json)
- #to_json(*a) ⇒ Object
Constructor Details
#initialize(operation, objects) ⇒ ArrayOp
Returns a new instance of ArrayOp.
219 220 221 222 |
# File 'lib/leancloud/datatypes.rb', line 219 def initialize(operation, objects) @operation = operation @objects = objects end |
Instance Attribute Details
#objects ⇒ Object
Returns the value of attribute objects.
217 218 219 |
# File 'lib/leancloud/datatypes.rb', line 217 def objects @objects end |
#operation ⇒ Object
‘{“myArray”: {“__op”: “Add”, “objects”: [“something”, “something else”] } }’
216 217 218 |
# File 'lib/leancloud/datatypes.rb', line 216 def operation @operation end |
Instance Method Details
#eql?(other) ⇒ Boolean Also known as: ==
224 225 226 227 228 |
# File 'lib/leancloud/datatypes.rb', line 224 def eql?(other) self.class.equal?(other.class) && operation == other.operation && objects == other.objects end |
#hash ⇒ Object
232 233 234 |
# File 'lib/leancloud/datatypes.rb', line 232 def hash operation.hash ^ objects.hash end |
#to_h(*a) ⇒ Object Also known as: as_json
236 237 238 239 240 241 |
# File 'lib/leancloud/datatypes.rb', line 236 def to_h(*a) { Protocol::KEY_OP => operation, Protocol::KEY_OBJECTS => @objects } end |
#to_json(*a) ⇒ Object
244 245 246 |
# File 'lib/leancloud/datatypes.rb', line 244 def to_json(*a) to_h.to_json(*a) end |