Class: DynamicArray

Inherits:
Object
  • Object
show all
Defined in:
lib/vmware/soap/vim25.rb

Overview

urn:vim25DynamicArray

dynamicType - SOAP::SOAPString
val - (any)

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(dynamicType = nil, val = []) ⇒ DynamicArray

Returns a new instance of DynamicArray.



10
11
12
13
# File 'lib/vmware/soap/vim25.rb', line 10

def initialize(dynamicType = nil, val = [])
  @dynamicType = dynamicType
  @val = val
end

Instance Attribute Details

#dynamicTypeObject

Returns the value of attribute dynamicType.



7
8
9
# File 'lib/vmware/soap/vim25.rb', line 7

def dynamicType
  @dynamicType
end

#valObject

Returns the value of attribute val.



8
9
10
# File 'lib/vmware/soap/vim25.rb', line 8

def val
  @val
end