class VimString
Public Class Methods
new(val = "", vimType = nil, xsiType = nil) { |self| ... }
click to toggle source
vimType and xsiType arg positions are switched here because most strings are MORs, and this makes it easier to set the vimType of the MOR.
Calls superclass method
# File lib/VMwareWebService/VimTypes.rb, line 81 def initialize(val = "", vimType = nil, xsiType = nil) self.xsiType = xsiType self.vimType = vimType super(val) yield(self) if block_given? end