Class: Flowthings::Drop
- Inherits:
-
PlatformObjectInterface
- Object
- PlatformObjectInterface
- Flowthings::Drop
- Includes:
- Crud::Aggregate, Crud::ExtendedMethods, Crud::Find, Crud::MemberUpdate
- Defined in:
- lib/flowthings/platform_objects/drop.rb
Instance Attribute Summary collapse
-
#flowId ⇒ Object
Returns the value of attribute flowId.
Instance Method Summary collapse
-
#initialize(flowId, connection, options = {}) ⇒ Drop
constructor
A new instance of Drop.
Methods included from Crud::Aggregate
Methods included from Crud::MemberUpdate
Methods included from Crud::Find
Methods included from Crud::ExtendedMethods
Methods included from Crud::Base
#create, #destroy, #read, #update
Constructor Details
#initialize(flowId, connection, options = {}) ⇒ Drop
Returns a new instance of Drop.
17 18 19 20 21 22 23 24 25 |
# File 'lib/flowthings/platform_objects/drop.rb', line 17 def initialize(flowId, connection, ={}) if flowId.kind_of? Array @flowIds = flowId else @flowId = flowId end super connection, end |
Instance Attribute Details
#flowId ⇒ Object
Returns the value of attribute flowId.
15 16 17 |
# File 'lib/flowthings/platform_objects/drop.rb', line 15 def flowId @flowId end |