Class: Etapper::API::SearchCriteria
- Inherits:
-
Object
- Object
- Etapper::API::SearchCriteria
- Defined in:
- lib/etapper/api/service.rb
Overview
Instance Attribute Summary collapse
-
#action ⇒ Object
Returns the value of attribute action.
-
#field ⇒ Object
Returns the value of attribute field.
-
#type ⇒ Object
Returns the value of attribute type.
-
#values ⇒ Object
Returns the value of attribute values.
Instance Method Summary collapse
-
#initialize(action = nil, field = nil, type = nil, values = nil) ⇒ SearchCriteria
constructor
A new instance of SearchCriteria.
Constructor Details
#initialize(action = nil, field = nil, type = nil, values = nil) ⇒ SearchCriteria
Returns a new instance of SearchCriteria.
987 988 989 990 991 992 |
# File 'lib/etapper/api/service.rb', line 987 def initialize(action = nil, field = nil, type = nil, values = nil) @action = action @field = field @type = type @values = values end |
Instance Attribute Details
#action ⇒ Object
Returns the value of attribute action.
982 983 984 |
# File 'lib/etapper/api/service.rb', line 982 def action @action end |
#field ⇒ Object
Returns the value of attribute field.
983 984 985 |
# File 'lib/etapper/api/service.rb', line 983 def field @field end |
#type ⇒ Object
Returns the value of attribute type.
984 985 986 |
# File 'lib/etapper/api/service.rb', line 984 def type @type end |
#values ⇒ Object
Returns the value of attribute values.
985 986 987 |
# File 'lib/etapper/api/service.rb', line 985 def values @values end |