Class: CrvApiClient::Api::Animals::Parameter
- Inherits:
-
Object
- Object
- CrvApiClient::Api::Animals::Parameter
- Defined in:
- lib/crv_api_client/api/animals/animals.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.
808 809 810 811 812 813 814 |
# File 'lib/crv_api_client/api/animals/animals.rb', line 808 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.
805 806 807 |
# File 'lib/crv_api_client/api/animals/animals.rb', line 805 def default @default end |
#parameterName ⇒ Object
Returns the value of attribute parameterName.
802 803 804 |
# File 'lib/crv_api_client/api/animals/animals.rb', line 802 def parameterName @parameterName end |
#sortingOrder ⇒ Object
Returns the value of attribute sortingOrder.
806 807 808 |
# File 'lib/crv_api_client/api/animals/animals.rb', line 806 def sortingOrder @sortingOrder end |
#value ⇒ Object
Returns the value of attribute value.
803 804 805 |
# File 'lib/crv_api_client/api/animals/animals.rb', line 803 def value @value end |
#valueDescription ⇒ Object
Returns the value of attribute valueDescription.
804 805 806 |
# File 'lib/crv_api_client/api/animals/animals.rb', line 804 def valueDescription @valueDescription end |