Method: PortfolioManager::Xml::Pgp#xmlattr_eGridName

Defined in:
lib/portfolio_manager/xml.rb,
lib/portfolio_manager/xml.rb

#xmlattr_eGridNameSOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


10176
10177
10178
10179
10180
10181
10182
10183
10184
10185
10186
10187
10188
10189
10190
10191
10192
10193
10194
10195
10196
10197
10198
10199
10200
10201
10202
10203
10204
10205
10206
10207
10208
10209
10210
10211
10212
10213
10214
10215
10216
10217
10218
10219
10220
10221
10222
10223
10224
10225
10226
10227
10228
10229
10230
# File 'lib/portfolio_manager/xml.rb', line 10176

class Pgp
  AttrEGridCode = XSD::QName.new(nil, "eGridCode")
  AttrEGridName = XSD::QName.new(nil, "eGridName")
  AttrName = XSD::QName.new(nil, "name")
  AttrPlantCode = XSD::QName.new(nil, "plantCode")
  AttrSelected = XSD::QName.new(nil, "selected")

  def __xmlattr
    @__xmlattr ||= {}
  end

  def xmlattr_plantCode
    __xmlattr[AttrPlantCode]
  end

  def xmlattr_plantCode=(value)
    __xmlattr[AttrPlantCode] = value
  end

  def xmlattr_name
    __xmlattr[AttrName]
  end

  def xmlattr_name=(value)
    __xmlattr[AttrName] = value
  end

  def xmlattr_selected
    __xmlattr[AttrSelected]
  end

  def xmlattr_selected=(value)
    __xmlattr[AttrSelected] = value
  end

  def xmlattr_eGridCode
    __xmlattr[AttrEGridCode]
  end

  def xmlattr_eGridCode=(value)
    __xmlattr[AttrEGridCode] = value
  end

  def xmlattr_eGridName
    __xmlattr[AttrEGridName]
  end

  def xmlattr_eGridName=(value)
    __xmlattr[AttrEGridName] = value
  end

  def initialize
    @__xmlattr = {}
  end
end