Method: PortfolioManager::Xml::EnergyPerformanceProjectType#projectName

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

#projectNameSOAP::SOAPString

Returns:

  • (SOAP::SOAPString)


3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
# File 'lib/portfolio_manager/xml.rb', line 3362

class EnergyPerformanceProjectType
  attr_accessor :projectName
  attr_accessor :projectDescription
  attr_accessor :propertyId
  attr_accessor :propertyName
  attr_accessor :implementationDate
  attr_accessor :category
  attr_accessor :categoryOtherDescription
  attr_accessor :investmentCost
  attr_accessor :estimatedSavingsCost
  attr_accessor :evaluationPeriod
  attr_accessor :audit

  def initialize(projectName = nil, projectDescription = nil, propertyId = nil, propertyName = nil, implementationDate = nil, category = nil, categoryOtherDescription = nil, investmentCost = nil, estimatedSavingsCost = nil, evaluationPeriod = nil, audit = nil)
    @projectName = projectName
    @projectDescription = projectDescription
    @propertyId = propertyId
    @propertyName = propertyName
    @implementationDate = implementationDate
    @category = category
    @categoryOtherDescription = categoryOtherDescription
    @investmentCost = investmentCost
    @estimatedSavingsCost = estimatedSavingsCost
    @evaluationPeriod = evaluationPeriod
    @audit = audit
  end
end