Class: CrvApiClient::Api::Reproduction::Parameter
- Inherits:
-
Object
- Object
- CrvApiClient::Api::Reproduction::Parameter
- Defined in:
- lib/crv_api_client/api/reproduction/reproduction.rb
Overview
/parameter
parameterName - SOAP::SOAPString
value - SOAP::SOAPString
valueDescription - SOAP::SOAPString
default - SOAP::SOAPString
sortingOrder - SOAP::SOAPString
Instance Attribute Summary collapse
-
#default ⇒ Object
Returns the value of attribute default.
-
#parameterName ⇒ Object
Returns the value of attribute parameterName.
-
#sortingOrder ⇒ Object
Returns the value of attribute sortingOrder.
-
#value ⇒ Object
Returns the value of attribute value.
-
#valueDescription ⇒ Object
Returns the value of attribute valueDescription.
Instance Method Summary collapse
-
#initialize(parameterName = nil, value = nil, valueDescription = nil, default = nil, sortingOrder = nil) ⇒ Parameter
constructor
A new instance of Parameter.
Constructor Details
#initialize(parameterName = nil, value = nil, valueDescription = nil, default = nil, sortingOrder = nil) ⇒ Parameter
Returns a new instance of Parameter.
1169 1170 1171 1172 1173 1174 1175 |
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 1169 def initialize(parameterName = nil, value = nil, valueDescription = nil, default = nil, sortingOrder = nil) @parameterName = parameterName @value = value @valueDescription = valueDescription @default = default @sortingOrder = sortingOrder end |
Instance Attribute Details
#default ⇒ Object
Returns the value of attribute default.
1166 1167 1168 |
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 1166 def default @default end |
#parameterName ⇒ Object
Returns the value of attribute parameterName.
1163 1164 1165 |
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 1163 def parameterName @parameterName end |
#sortingOrder ⇒ Object
Returns the value of attribute sortingOrder.
1167 1168 1169 |
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 1167 def sortingOrder @sortingOrder end |
#value ⇒ Object
Returns the value of attribute value.
1164 1165 1166 |
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 1164 def value @value end |
#valueDescription ⇒ Object
Returns the value of attribute valueDescription.
1165 1166 1167 |
# File 'lib/crv_api_client/api/reproduction/reproduction.rb', line 1165 def valueDescription @valueDescription end |