Class: WSDL::Operation::NameInfo
- Inherits:
- 
      Object
      
        - Object
- WSDL::Operation::NameInfo
 
- Defined in:
- lib/wsdl/operation.rb
Instance Attribute Summary collapse
- 
  
    
      #op_name  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute op_name. 
- 
  
    
      #optype_name  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute optype_name. 
- 
  
    
      #parts  ⇒ Object 
    
    
  
  
  
  
    
      readonly
    
    
  
  
  
  
  
  
    Returns the value of attribute parts. 
Instance Method Summary collapse
- 
  
    
      #initialize(op_name, optype_name, parts)  ⇒ NameInfo 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of NameInfo. 
Constructor Details
#initialize(op_name, optype_name, parts) ⇒ NameInfo
Returns a new instance of NameInfo.
| 20 21 22 23 24 | # File 'lib/wsdl/operation.rb', line 20 def initialize(op_name, optype_name, parts) @op_name = op_name @optype_name = optype_name @parts = parts end | 
Instance Attribute Details
#op_name ⇒ Object (readonly)
Returns the value of attribute op_name.
| 17 18 19 | # File 'lib/wsdl/operation.rb', line 17 def op_name @op_name end | 
#optype_name ⇒ Object (readonly)
Returns the value of attribute optype_name.
| 18 19 20 | # File 'lib/wsdl/operation.rb', line 18 def optype_name @optype_name end | 
#parts ⇒ Object (readonly)
Returns the value of attribute parts.
| 19 20 21 | # File 'lib/wsdl/operation.rb', line 19 def parts @parts end |