Class: PortfolioManager::Xml::IrrigationAreaTypeBase

Inherits:
Object
  • Object
show all
Defined in:
lib/portfolio_manager/xml.rb

Overview

{}irrigationAreaTypeBase

Direct Known Subclasses

IrrigationAreaType

Constant Summary collapse

AttrDefault =
XSD::QName.new(nil, "default")
AttrUnits =
XSD::QName.new(nil, "units")

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeIrrigationAreaTypeBase

Returns a new instance of IrrigationAreaTypeBase.



2596
2597
2598
# File 'lib/portfolio_manager/xml.rb', line 2596

def initialize
  @__xmlattr = {}
end

Instance Attribute Details

#xmlattr_defaultSOAP::SOAPBoolean

Returns:

  • (SOAP::SOAPBoolean)


2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
# File 'lib/portfolio_manager/xml.rb', line 2572

class IrrigationAreaTypeBase
  AttrDefault = XSD::QName.new(nil, "default")
  AttrUnits = XSD::QName.new(nil, "units")

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_default
    __xmlattr[AttrDefault]
  end

  def xmlattr_default=(value)
    __xmlattr[AttrDefault] = value
  end

  def xmlattr_units
    __xmlattr[AttrUnits]
  end

  def xmlattr_units=(value)
    __xmlattr[AttrUnits] = value
  end

  def initialize
    @__xmlattr = {}
  end
end

#xmlattr_unitsSOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
# File 'lib/portfolio_manager/xml.rb', line 2572

class IrrigationAreaTypeBase
  AttrDefault = XSD::QName.new(nil, "default")
  AttrUnits = XSD::QName.new(nil, "units")

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_default
    __xmlattr[AttrDefault]
  end

  def xmlattr_default=(value)
    __xmlattr[AttrDefault] = value
  end

  def xmlattr_units
    __xmlattr[AttrUnits]
  end

  def xmlattr_units=(value)
    __xmlattr[AttrUnits] = value
  end

  def initialize
    @__xmlattr = {}
  end
end

Instance Method Details

#__xmlattrObject



2576
2577
2578
# File 'lib/portfolio_manager/xml.rb', line 2576

def __xmlattr
  @__xmlattr ||= {}
end