Class: ForestLiana::Model::Action

Inherits:
Object
  • Object
show all
Extended by:
ActiveModel::Naming
Includes:
ActiveModel::Conversion, ActiveModel::Serialization, ActiveModel::Validations
Defined in:
app/models/forest_liana/model/action.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(attributes = {}) ⇒ Action

Returns a new instance of Action.



10
11
12
13
14
# File 'app/models/forest_liana/model/action.rb', line 10

def initialize(attributes = {})
  attributes.each do |name, value|
    send("#{name}=", value)
  end
end

Instance Attribute Details

#downloadObject

Returns the value of attribute download.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def download
  @download
end

#endpointObject

Returns the value of attribute endpoint.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def endpoint
  @endpoint
end

#fieldsObject

Returns the value of attribute fields.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def fields
  @fields
end

#globalObject

Returns the value of attribute global.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def global
  @global
end

#http_methodObject

Returns the value of attribute http_method.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def http_method
  @http_method
end

#idObject

Returns the value of attribute id.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def id
  @id
end

#nameObject

Returns the value of attribute name.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def name
  @name
end

#redirectObject

Returns the value of attribute redirect.



7
8
9
# File 'app/models/forest_liana/model/action.rb', line 7

def redirect
  @redirect
end

Instance Method Details

#persisted?Boolean

Returns:

  • (Boolean)


16
17
18
# File 'app/models/forest_liana/model/action.rb', line 16

def persisted?
  false
end