Class: Etapper::API::SearchCriteria

Inherits:
Object
  • Object
show all
Defined in:
lib/etapper/api/service.rb

Overview

etapestryAPI/serviceSearchCriteria

action - SOAP::SOAPString
field - SOAP::SOAPString
type - SOAP::SOAPString
values - Etapper::API::ArrayOfstring

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#actionObject

Returns the value of attribute action.



982
983
984
# File 'lib/etapper/api/service.rb', line 982

def action
  @action
end

#fieldObject

Returns the value of attribute field.



983
984
985
# File 'lib/etapper/api/service.rb', line 983

def field
  @field
end

#typeObject

Returns the value of attribute type.



984
985
986
# File 'lib/etapper/api/service.rb', line 984

def type
  @type
end

#valuesObject

Returns the value of attribute values.



985
986
987
# File 'lib/etapper/api/service.rb', line 985

def values
  @values
end