Class: SOAPAttribute
- Inherits:
-
Object
- Object
- SOAPAttribute
- Defined in:
- lib/crowd/default.rb
Overview
http://soap.integration.crowd.atlassian.comSOAPAttribute
name - SOAP::SOAPString
values - ArrayOfString
Instance Attribute Summary collapse
-
#name ⇒ Object
Returns the value of attribute name.
-
#values ⇒ Object
Returns the value of attribute values.
Instance Method Summary collapse
-
#initialize(name = nil, values = nil) ⇒ SOAPAttribute
constructor
A new instance of SOAPAttribute.
Constructor Details
#initialize(name = nil, values = nil) ⇒ SOAPAttribute
Returns a new instance of SOAPAttribute.
134 135 136 137 |
# File 'lib/crowd/default.rb', line 134 def initialize(name = nil, values = nil) @name = name @values = values end |
Instance Attribute Details
#name ⇒ Object
Returns the value of attribute name.
131 132 133 |
# File 'lib/crowd/default.rb', line 131 def name @name end |
#values ⇒ Object
Returns the value of attribute values.
132 133 134 |
# File 'lib/crowd/default.rb', line 132 def values @values end |