portfoliomanager-rb 0.0.1 → 0.0.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2286,6 +2286,82 @@ module PortfolioManager
2286
2286
  end
2287
2287
  end
2288
2288
 
2289
+ # {}ceilingHeightUnitsType
2290
+ # @!attribute [rw] audit
2291
+ # @return [PortfolioManager::Xml::LogType]
2292
+ # @!attribute [rw] value
2293
+ # @return [SOAP::SOAPDecimal]
2294
+ # @!attribute [rw] xmlattr_id
2295
+ # @return [SOAP::SOAPLong]
2296
+ # @!attribute [rw] xmlattr_currentAsOf
2297
+ # @return [SOAP::SOAPDate]
2298
+ # @!attribute [rw] xmlattr_temporary
2299
+ # @return [SOAP::SOAPBoolean]
2300
+ # @!attribute [rw] xmlattr_default
2301
+ # @return [SOAP::SOAPString]
2302
+ # @!attribute [rw] xmlattr_units
2303
+ # @return [SOAP::SOAPString]
2304
+ class CeilingHeightUnitsType < UseAttributeBase
2305
+ AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf")
2306
+ AttrDefault = XSD::QName.new(nil, "default")
2307
+ AttrId = XSD::QName.new(nil, "id")
2308
+ AttrTemporary = XSD::QName.new(nil, "temporary")
2309
+ AttrUnits = XSD::QName.new(nil, "units")
2310
+
2311
+ attr_accessor :audit
2312
+ attr_accessor :value
2313
+
2314
+ def __xmlattr
2315
+ @__xmlattr ||= {}
2316
+ end
2317
+
2318
+ def xmlattr_id
2319
+ __xmlattr[AttrId]
2320
+ end
2321
+
2322
+ def xmlattr_id=(value)
2323
+ __xmlattr[AttrId] = value
2324
+ end
2325
+
2326
+ def xmlattr_currentAsOf
2327
+ __xmlattr[AttrCurrentAsOf]
2328
+ end
2329
+
2330
+ def xmlattr_currentAsOf=(value)
2331
+ __xmlattr[AttrCurrentAsOf] = value
2332
+ end
2333
+
2334
+ def xmlattr_temporary
2335
+ __xmlattr[AttrTemporary]
2336
+ end
2337
+
2338
+ def xmlattr_temporary=(value)
2339
+ __xmlattr[AttrTemporary] = value
2340
+ end
2341
+
2342
+ def xmlattr_default
2343
+ __xmlattr[AttrDefault]
2344
+ end
2345
+
2346
+ def xmlattr_default=(value)
2347
+ __xmlattr[AttrDefault] = value
2348
+ end
2349
+
2350
+ def xmlattr_units
2351
+ __xmlattr[AttrUnits]
2352
+ end
2353
+
2354
+ def xmlattr_units=(value)
2355
+ __xmlattr[AttrUnits] = value
2356
+ end
2357
+
2358
+ def initialize(audit = nil, value = nil)
2359
+ @audit = audit
2360
+ @value = value
2361
+ @__xmlattr = {}
2362
+ end
2363
+ end
2364
+
2289
2365
  # {}clearHeightUnitsType
2290
2366
  # @!attribute [rw] audit
2291
2367
  # @return [PortfolioManager::Xml::LogType]
@@ -2362,6 +2438,101 @@ module PortfolioManager
2362
2438
  end
2363
2439
  end
2364
2440
 
2441
+ # {}customUseDetailsType
2442
+ # @!attribute [rw] audit
2443
+ # @return [PortfolioManager::Xml::LogType]
2444
+ # @!attribute [rw] value
2445
+ # @return [SOAP::SOAPString]
2446
+ # @!attribute [rw] customName
2447
+ # @return [SOAP::SOAPString]
2448
+ # @!attribute [rw] customUom
2449
+ # @return [SOAP::SOAPString]
2450
+ # @!attribute [rw] xmlattr_id
2451
+ # @return [SOAP::SOAPLong]
2452
+ # @!attribute [rw] xmlattr_currentAsOf
2453
+ # @return [SOAP::SOAPDate]
2454
+ # @!attribute [rw] xmlattr_temporary
2455
+ # @return [SOAP::SOAPBoolean]
2456
+ # @!attribute [rw] xmlattr_default
2457
+ # @return [SOAP::SOAPString]
2458
+ # @!attribute [rw] xmlattr_units
2459
+ # @return [SOAP::SOAPString]
2460
+ # @!attribute [rw] xmlattr_dataType
2461
+ # @return [SOAP::SOAPString]
2462
+ class CustomUseDetailsType < UseAttributeBase
2463
+ AttrCurrentAsOf = XSD::QName.new(nil, "currentAsOf")
2464
+ AttrDataType = XSD::QName.new(nil, "dataType")
2465
+ AttrDefault = XSD::QName.new(nil, "default")
2466
+ AttrId = XSD::QName.new(nil, "id")
2467
+ AttrTemporary = XSD::QName.new(nil, "temporary")
2468
+ AttrUnits = XSD::QName.new(nil, "units")
2469
+
2470
+ attr_accessor :audit
2471
+ attr_accessor :value
2472
+ attr_accessor :customName
2473
+ attr_accessor :customUom
2474
+
2475
+ def __xmlattr
2476
+ @__xmlattr ||= {}
2477
+ end
2478
+
2479
+ def xmlattr_id
2480
+ __xmlattr[AttrId]
2481
+ end
2482
+
2483
+ def xmlattr_id=(value)
2484
+ __xmlattr[AttrId] = value
2485
+ end
2486
+
2487
+ def xmlattr_currentAsOf
2488
+ __xmlattr[AttrCurrentAsOf]
2489
+ end
2490
+
2491
+ def xmlattr_currentAsOf=(value)
2492
+ __xmlattr[AttrCurrentAsOf] = value
2493
+ end
2494
+
2495
+ def xmlattr_temporary
2496
+ __xmlattr[AttrTemporary]
2497
+ end
2498
+
2499
+ def xmlattr_temporary=(value)
2500
+ __xmlattr[AttrTemporary] = value
2501
+ end
2502
+
2503
+ def xmlattr_default
2504
+ __xmlattr[AttrDefault]
2505
+ end
2506
+
2507
+ def xmlattr_default=(value)
2508
+ __xmlattr[AttrDefault] = value
2509
+ end
2510
+
2511
+ def xmlattr_units
2512
+ __xmlattr[AttrUnits]
2513
+ end
2514
+
2515
+ def xmlattr_units=(value)
2516
+ __xmlattr[AttrUnits] = value
2517
+ end
2518
+
2519
+ def xmlattr_dataType
2520
+ __xmlattr[AttrDataType]
2521
+ end
2522
+
2523
+ def xmlattr_dataType=(value)
2524
+ __xmlattr[AttrDataType] = value
2525
+ end
2526
+
2527
+ def initialize(audit = nil, value = nil, customName = nil, customUom = nil)
2528
+ @audit = audit
2529
+ @value = value
2530
+ @customName = customName
2531
+ @customUom = customUom
2532
+ @__xmlattr = {}
2533
+ end
2534
+ end
2535
+
2365
2536
  # {}logType
2366
2537
  # @!attribute [rw] createdBy
2367
2538
  # @return [SOAP::SOAPString]
@@ -2697,7 +2868,7 @@ module PortfolioManager
2697
2868
  # @!attribute [rw] accessLevel
2698
2869
  # @return [PortfolioManager::Xml::ShareLevelType]
2699
2870
  # @!attribute [rw] aggregateMeter
2700
- # @return [Object]
2871
+ # @return [SOAP::SOAPBoolean]
2701
2872
  # @!attribute [rw] audit
2702
2873
  # @return [PortfolioManager::Xml::LogType]
2703
2874
  class MeterType
@@ -2970,10 +3141,13 @@ module PortfolioManager
2970
3141
  # @return [SOAP::SOAPInteger]
2971
3142
  # @!attribute [rw] xmlattr_month
2972
3143
  # @return [SOAP::SOAPInteger]
3144
+ # @!attribute [rw] xmlattr_periodType
3145
+ # @return [SOAP::SOAPString]
2973
3146
  # @!attribute [rw] xmlattr_propertyId
2974
3147
  # @return [SOAP::SOAPLong]
2975
3148
  class PropertyMetricsType
2976
3149
  AttrMonth = XSD::QName.new(nil, "month")
3150
+ AttrPeriodType = XSD::QName.new(nil, "periodType")
2977
3151
  AttrPropertyId = XSD::QName.new(nil, "propertyId")
2978
3152
  AttrYear = XSD::QName.new(nil, "year")
2979
3153
 
@@ -2999,6 +3173,14 @@ module PortfolioManager
2999
3173
  __xmlattr[AttrMonth] = value
3000
3174
  end
3001
3175
 
3176
+ def xmlattr_periodType
3177
+ __xmlattr[AttrPeriodType]
3178
+ end
3179
+
3180
+ def xmlattr_periodType=(value)
3181
+ __xmlattr[AttrPeriodType] = value
3182
+ end
3183
+
3002
3184
  def xmlattr_propertyId
3003
3185
  __xmlattr[AttrPropertyId]
3004
3186
  end
@@ -3020,12 +3202,18 @@ module PortfolioManager
3020
3202
  # @return [SOAP::SOAPString]
3021
3203
  # @!attribute [rw] xmlattr_name
3022
3204
  # @return [SOAP::SOAPString]
3205
+ # @!attribute [rw] xmlattr_id
3206
+ # @return [SOAP::SOAPLong]
3023
3207
  # @!attribute [rw] xmlattr_uom
3024
3208
  # @return [SOAP::SOAPString]
3025
3209
  # @!attribute [rw] xmlattr_dataType
3026
3210
  # @return [SOAP::SOAPString]
3211
+ # @!attribute [rw] xmlattr_autoGenerated
3212
+ # @return [SOAP::SOAPBoolean]
3027
3213
  class Metric
3214
+ AttrAutoGenerated = XSD::QName.new(nil, "autoGenerated")
3028
3215
  AttrDataType = XSD::QName.new(nil, "dataType")
3216
+ AttrId = XSD::QName.new(nil, "id")
3029
3217
  AttrName = XSD::QName.new(nil, "name")
3030
3218
  AttrUom = XSD::QName.new(nil, "uom")
3031
3219
 
@@ -3044,6 +3232,14 @@ module PortfolioManager
3044
3232
  __xmlattr[AttrName] = value
3045
3233
  end
3046
3234
 
3235
+ def xmlattr_id
3236
+ __xmlattr[AttrId]
3237
+ end
3238
+
3239
+ def xmlattr_id=(value)
3240
+ __xmlattr[AttrId] = value
3241
+ end
3242
+
3047
3243
  def xmlattr_uom
3048
3244
  __xmlattr[AttrUom]
3049
3245
  end
@@ -3060,6 +3256,14 @@ module PortfolioManager
3060
3256
  __xmlattr[AttrDataType] = value
3061
3257
  end
3062
3258
 
3259
+ def xmlattr_autoGenerated
3260
+ __xmlattr[AttrAutoGenerated]
3261
+ end
3262
+
3263
+ def xmlattr_autoGenerated=(value)
3264
+ __xmlattr[AttrAutoGenerated] = value
3265
+ end
3266
+
3063
3267
  def initialize(monthlyMetric = [], value = nil)
3064
3268
  @monthlyMetric = monthlyMetric
3065
3269
  @value = value
@@ -3074,8 +3278,14 @@ module PortfolioManager
3074
3278
  # @return [SOAP::SOAPString]
3075
3279
  # @!attribute [rw] xmlattr_year
3076
3280
  # @return [SOAP::SOAPString]
3281
+ # @!attribute [rw] xmlattr_periodType
3282
+ # @return [SOAP::SOAPString]
3283
+ # @!attribute [rw] xmlattr_autoGenerated
3284
+ # @return [SOAP::SOAPBoolean]
3077
3285
  class ReportMetricValuesWs
3286
+ AttrAutoGenerated = XSD::QName.new(nil, "autoGenerated")
3078
3287
  AttrMonth = XSD::QName.new(nil, "month")
3288
+ AttrPeriodType = XSD::QName.new(nil, "periodType")
3079
3289
  AttrYear = XSD::QName.new(nil, "year")
3080
3290
 
3081
3291
  attr_accessor :value
@@ -3100,6 +3310,22 @@ module PortfolioManager
3100
3310
  __xmlattr[AttrYear] = value
3101
3311
  end
3102
3312
 
3313
+ def xmlattr_periodType
3314
+ __xmlattr[AttrPeriodType]
3315
+ end
3316
+
3317
+ def xmlattr_periodType=(value)
3318
+ __xmlattr[AttrPeriodType] = value
3319
+ end
3320
+
3321
+ def xmlattr_autoGenerated
3322
+ __xmlattr[AttrAutoGenerated]
3323
+ end
3324
+
3325
+ def xmlattr_autoGenerated=(value)
3326
+ __xmlattr[AttrAutoGenerated] = value
3327
+ end
3328
+
3103
3329
  def initialize(value = [])
3104
3330
  @value = value
3105
3331
  @__xmlattr = {}
@@ -3278,9 +3504,9 @@ module PortfolioManager
3278
3504
  # @!attribute [rw] personalServices
3279
3505
  # @return [PortfolioManager::Xml::OtherType]
3280
3506
  # @!attribute [rw] mailingCenterPostOffice
3281
- # @return [PortfolioManager::Xml::OtherType]
3507
+ # @return [PortfolioManager::Xml::MailingCenterPostOfficeType]
3282
3508
  # @!attribute [rw] library
3283
- # @return [PortfolioManager::Xml::OtherType]
3509
+ # @return [PortfolioManager::Xml::LibraryType]
3284
3510
  # @!attribute [rw] otherSpecialityHospital
3285
3511
  # @return [PortfolioManager::Xml::OtherType]
3286
3512
  # @!attribute [rw] conventionCenter
@@ -3299,10 +3525,10 @@ module PortfolioManager
3299
3525
  # @return [PortfolioManager::Xml::OtherType]
3300
3526
  # @!attribute [rw] zoo
3301
3527
  # @return [PortfolioManager::Xml::OtherType]
3302
- # @!attribute [rw] automobileDealership
3303
- # @return [PortfolioManager::Xml::OtherType]
3528
+ # @!attribute [rw] vehicleDealership
3529
+ # @return [PortfolioManager::Xml::VehicleDealershipType]
3304
3530
  # @!attribute [rw] museum
3305
- # @return [PortfolioManager::Xml::OtherType]
3531
+ # @return [PortfolioManager::Xml::MuseumType]
3306
3532
  # @!attribute [rw] otherRecreation
3307
3533
  # @return [PortfolioManager::Xml::OtherType]
3308
3534
  # @!attribute [rw] otherRestaurantBar
@@ -3369,6 +3595,8 @@ module PortfolioManager
3369
3595
  # @return [PortfolioManager::Xml::ConvenienceStoreWithGasStationType]
3370
3596
  # @!attribute [rw] other
3371
3597
  # @return [PortfolioManager::Xml::OtherType]
3598
+ # @!attribute [rw] electricVehicleChargingStation
3599
+ # @return [PortfolioManager::Xml::EvChargingStationType]
3372
3600
  class PropertyUses
3373
3601
  attr_accessor :prison
3374
3602
  attr_accessor :refrigeratedWarehouse
@@ -3421,7 +3649,7 @@ module PortfolioManager
3421
3649
  attr_accessor :barNightclub
3422
3650
  attr_accessor :otherUtility
3423
3651
  attr_accessor :zoo
3424
- attr_accessor :automobileDealership
3652
+ attr_accessor :vehicleDealership
3425
3653
  attr_accessor :museum
3426
3654
  attr_accessor :otherRecreation
3427
3655
  attr_accessor :otherRestaurantBar
@@ -3456,8 +3684,9 @@ module PortfolioManager
3456
3684
  attr_accessor :otherMall
3457
3685
  attr_accessor :convenienceStoreWithGasStation
3458
3686
  attr_accessor :other
3687
+ attr_accessor :electricVehicleChargingStation
3459
3688
 
3460
- def initialize(prison = [], refrigeratedWarehouse = [], retail = [], hospital = [], medicalOffice = [], dataCenter = [], courthouse = [], singleFamilyHome = [], nonRefrigeratedWarehouse = [], multifamilyHousing = [], office = [], wholesaleClubSupercenter = [], selfStorageFacility = [], seniorLivingCommunity = [], residentialCareFacility = [], swimmingPool = [], residenceHallDormitory = [], wastewaterTreatmentPlant = [], distributionCenter = [], worshipFacility = [], financialOffice = [], drinkingWaterTreatmentAndDistribution = [], parking = [], supermarket = [], barracks = [], hotel = [], k12School = [], bankBranch = [], collegeUniversity = [], indoorArena = [], otherStadium = [], stadiumClosed = [], stadiumOpen = [], manufacturingIndustrialPlant = [], ambulatorySurgicalCenter = [], bowlingAlley = [], otherPublicServices = [], otherLodgingResidential = [], casino = [], personalServices = [], mailingCenterPostOffice = [], library = [], otherSpecialityHospital = [], conventionCenter = [], veterinaryOffice = [], urgentCareClinicOtherOutpatient = [], energyPowerStation = [], otherServices = [], barNightclub = [], otherUtility = [], zoo = [], automobileDealership = [], museum = [], otherRecreation = [], otherRestaurantBar = [], lifestyleCenter = [], policeStation = [], preschoolDaycare = [], raceTrack = [], fastFoodRestaurant = [], laboratory = [], convenienceStoreWithoutGasStation = [], repairServices = [], otherTechnologyScience = [], fireStation = [], foodSales = [], performingArts = [], outpatientRehabilitationPhysicalTherapy = [], stripMall = [], rollerRink = [], otherEducation = [], fitnessCenterHealthClubGym = [], aquarium = [], foodService = [], restaurant = [], enclosedMall = [], iceCurlingRink = [], adultEducation = [], otherEntertainmentPublicAssembly = [], movieTheater = [], transportationTerminalStation = [], vocationalSchool = [], socialMeetingHall = [], otherMall = [], convenienceStoreWithGasStation = [], other = [])
3689
+ def initialize(prison = [], refrigeratedWarehouse = [], retail = [], hospital = [], medicalOffice = [], dataCenter = [], courthouse = [], singleFamilyHome = [], nonRefrigeratedWarehouse = [], multifamilyHousing = [], office = [], wholesaleClubSupercenter = [], selfStorageFacility = [], seniorLivingCommunity = [], residentialCareFacility = [], swimmingPool = [], residenceHallDormitory = [], wastewaterTreatmentPlant = [], distributionCenter = [], worshipFacility = [], financialOffice = [], drinkingWaterTreatmentAndDistribution = [], parking = [], supermarket = [], barracks = [], hotel = [], k12School = [], bankBranch = [], collegeUniversity = [], indoorArena = [], otherStadium = [], stadiumClosed = [], stadiumOpen = [], manufacturingIndustrialPlant = [], ambulatorySurgicalCenter = [], bowlingAlley = [], otherPublicServices = [], otherLodgingResidential = [], casino = [], personalServices = [], mailingCenterPostOffice = [], library = [], otherSpecialityHospital = [], conventionCenter = [], veterinaryOffice = [], urgentCareClinicOtherOutpatient = [], energyPowerStation = [], otherServices = [], barNightclub = [], otherUtility = [], zoo = [], vehicleDealership = [], museum = [], otherRecreation = [], otherRestaurantBar = [], lifestyleCenter = [], policeStation = [], preschoolDaycare = [], raceTrack = [], fastFoodRestaurant = [], laboratory = [], convenienceStoreWithoutGasStation = [], repairServices = [], otherTechnologyScience = [], fireStation = [], foodSales = [], performingArts = [], outpatientRehabilitationPhysicalTherapy = [], stripMall = [], rollerRink = [], otherEducation = [], fitnessCenterHealthClubGym = [], aquarium = [], foodService = [], restaurant = [], enclosedMall = [], iceCurlingRink = [], adultEducation = [], otherEntertainmentPublicAssembly = [], movieTheater = [], transportationTerminalStation = [], vocationalSchool = [], socialMeetingHall = [], otherMall = [], convenienceStoreWithGasStation = [], other = [], electricVehicleChargingStation = [])
3461
3690
  @prison = prison
3462
3691
  @refrigeratedWarehouse = refrigeratedWarehouse
3463
3692
  @retail = retail
@@ -3509,7 +3738,7 @@ module PortfolioManager
3509
3738
  @barNightclub = barNightclub
3510
3739
  @otherUtility = otherUtility
3511
3740
  @zoo = zoo
3512
- @automobileDealership = automobileDealership
3741
+ @vehicleDealership = vehicleDealership
3513
3742
  @museum = museum
3514
3743
  @otherRecreation = otherRecreation
3515
3744
  @otherRestaurantBar = otherRestaurantBar
@@ -3544,6 +3773,7 @@ module PortfolioManager
3544
3773
  @otherMall = otherMall
3545
3774
  @convenienceStoreWithGasStation = convenienceStoreWithGasStation
3546
3775
  @other = other
3776
+ @electricVehicleChargingStation = electricVehicleChargingStation
3547
3777
  end
3548
3778
  end
3549
3779
 
@@ -4685,6 +4915,8 @@ module PortfolioManager
4685
4915
  # @return [PortfolioManager::Xml::UseDecimalType]
4686
4916
  # @!attribute [rw] seatingCapacity
4687
4917
  # @return [PortfolioManager::Xml::UseDecimalType]
4918
+ # @!attribute [rw] ceilingHeight
4919
+ # @return [PortfolioManager::Xml::CeilingHeightUnitsType]
4688
4920
  # @!attribute [rw] cookingFacilities
4689
4921
  # @return [PortfolioManager::Xml::UseYesNoType]
4690
4922
  # @!attribute [rw] grossFloorAreaUsedForFoodPreparation
@@ -4703,6 +4935,7 @@ module PortfolioManager
4703
4935
  attr_accessor :totalGrossFloorArea
4704
4936
  attr_accessor :weeklyOperatingHours
4705
4937
  attr_accessor :seatingCapacity
4938
+ attr_accessor :ceilingHeight
4706
4939
  attr_accessor :cookingFacilities
4707
4940
  attr_accessor :grossFloorAreaUsedForFoodPreparation
4708
4941
  attr_accessor :numberOfWeekdaysOpen
@@ -4711,10 +4944,11 @@ module PortfolioManager
4711
4944
  attr_accessor :percentHeated
4712
4945
  attr_accessor :percentCooled
4713
4946
 
4714
- def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, seatingCapacity = nil, cookingFacilities = nil, grossFloorAreaUsedForFoodPreparation = nil, numberOfWeekdaysOpen = nil, numberOfComputers = nil, numberOfCommercialRefrigerationUnits = nil, percentHeated = nil, percentCooled = nil)
4947
+ def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, seatingCapacity = nil, ceilingHeight = nil, cookingFacilities = nil, grossFloorAreaUsedForFoodPreparation = nil, numberOfWeekdaysOpen = nil, numberOfComputers = nil, numberOfCommercialRefrigerationUnits = nil, percentHeated = nil, percentCooled = nil)
4715
4948
  @totalGrossFloorArea = totalGrossFloorArea
4716
4949
  @weeklyOperatingHours = weeklyOperatingHours
4717
4950
  @seatingCapacity = seatingCapacity
4951
+ @ceilingHeight = ceilingHeight
4718
4952
  @cookingFacilities = cookingFacilities
4719
4953
  @grossFloorAreaUsedForFoodPreparation = grossFloorAreaUsedForFoodPreparation
4720
4954
  @numberOfWeekdaysOpen = numberOfWeekdaysOpen
@@ -5051,6 +5285,12 @@ module PortfolioManager
5051
5285
  # @return [PortfolioManager::Xml::OptionalFloorAreaType]
5052
5286
  # @!attribute [rw] lengthOfAllOpenClosedRefrigerationUnits
5053
5287
  # @return [PortfolioManager::Xml::LengthOfAllOpenClosedRefrigerationUnitsType]
5288
+ # @!attribute [rw] numberOfFTEWorkers
5289
+ # @return [PortfolioManager::Xml::UseDecimalType]
5290
+ # @!attribute [rw] numberOfCookingEquipmentUnits
5291
+ # @return [PortfolioManager::Xml::UseIntegerType]
5292
+ # @!attribute [rw] numberOfWarmingHeatingEquipmentUnits
5293
+ # @return [PortfolioManager::Xml::UseIntegerType]
5054
5294
  class UseDetails
5055
5295
  attr_accessor :totalGrossFloorArea
5056
5296
  attr_accessor :weeklyOperatingHours
@@ -5064,8 +5304,11 @@ module PortfolioManager
5064
5304
  attr_accessor :percentHeated
5065
5305
  attr_accessor :areaOfAllWalkInRefrigerationUnits
5066
5306
  attr_accessor :lengthOfAllOpenClosedRefrigerationUnits
5307
+ attr_accessor :numberOfFTEWorkers
5308
+ attr_accessor :numberOfCookingEquipmentUnits
5309
+ attr_accessor :numberOfWarmingHeatingEquipmentUnits
5067
5310
 
5068
- def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, numberOfWorkers = nil, numberOfComputers = nil, cookingFacilities = nil, numberOfWalkInRefrigerationUnits = nil, numberOfOpenClosedRefrigerationUnits = nil, numberOfCashRegisters = nil, percentCooled = nil, percentHeated = nil, areaOfAllWalkInRefrigerationUnits = nil, lengthOfAllOpenClosedRefrigerationUnits = nil)
5311
+ def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, numberOfWorkers = nil, numberOfComputers = nil, cookingFacilities = nil, numberOfWalkInRefrigerationUnits = nil, numberOfOpenClosedRefrigerationUnits = nil, numberOfCashRegisters = nil, percentCooled = nil, percentHeated = nil, areaOfAllWalkInRefrigerationUnits = nil, lengthOfAllOpenClosedRefrigerationUnits = nil, numberOfFTEWorkers = nil, numberOfCookingEquipmentUnits = nil, numberOfWarmingHeatingEquipmentUnits = nil)
5069
5312
  @totalGrossFloorArea = totalGrossFloorArea
5070
5313
  @weeklyOperatingHours = weeklyOperatingHours
5071
5314
  @numberOfWorkers = numberOfWorkers
@@ -5078,6 +5321,9 @@ module PortfolioManager
5078
5321
  @percentHeated = percentHeated
5079
5322
  @areaOfAllWalkInRefrigerationUnits = areaOfAllWalkInRefrigerationUnits
5080
5323
  @lengthOfAllOpenClosedRefrigerationUnits = lengthOfAllOpenClosedRefrigerationUnits
5324
+ @numberOfFTEWorkers = numberOfFTEWorkers
5325
+ @numberOfCookingEquipmentUnits = numberOfCookingEquipmentUnits
5326
+ @numberOfWarmingHeatingEquipmentUnits = numberOfWarmingHeatingEquipmentUnits
5081
5327
  end
5082
5328
  end
5083
5329
 
@@ -5127,6 +5373,12 @@ module PortfolioManager
5127
5373
  # @return [PortfolioManager::Xml::OptionalFloorAreaType]
5128
5374
  # @!attribute [rw] lengthOfAllOpenClosedRefrigerationUnits
5129
5375
  # @return [PortfolioManager::Xml::LengthOfAllOpenClosedRefrigerationUnitsType]
5376
+ # @!attribute [rw] numberOfFTEWorkers
5377
+ # @return [PortfolioManager::Xml::UseDecimalType]
5378
+ # @!attribute [rw] numberOfCookingEquipmentUnits
5379
+ # @return [PortfolioManager::Xml::UseIntegerType]
5380
+ # @!attribute [rw] numberOfWarmingHeatingEquipmentUnits
5381
+ # @return [PortfolioManager::Xml::UseIntegerType]
5130
5382
  class UseDetails
5131
5383
  attr_accessor :totalGrossFloorArea
5132
5384
  attr_accessor :weeklyOperatingHours
@@ -5140,8 +5392,11 @@ module PortfolioManager
5140
5392
  attr_accessor :percentHeated
5141
5393
  attr_accessor :areaOfAllWalkInRefrigerationUnits
5142
5394
  attr_accessor :lengthOfAllOpenClosedRefrigerationUnits
5395
+ attr_accessor :numberOfFTEWorkers
5396
+ attr_accessor :numberOfCookingEquipmentUnits
5397
+ attr_accessor :numberOfWarmingHeatingEquipmentUnits
5143
5398
 
5144
- def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, numberOfWorkers = nil, numberOfComputers = nil, cookingFacilities = nil, numberOfWalkInRefrigerationUnits = nil, numberOfOpenClosedRefrigerationUnits = nil, numberOfCashRegisters = nil, percentCooled = nil, percentHeated = nil, areaOfAllWalkInRefrigerationUnits = nil, lengthOfAllOpenClosedRefrigerationUnits = nil)
5399
+ def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, numberOfWorkers = nil, numberOfComputers = nil, cookingFacilities = nil, numberOfWalkInRefrigerationUnits = nil, numberOfOpenClosedRefrigerationUnits = nil, numberOfCashRegisters = nil, percentCooled = nil, percentHeated = nil, areaOfAllWalkInRefrigerationUnits = nil, lengthOfAllOpenClosedRefrigerationUnits = nil, numberOfFTEWorkers = nil, numberOfCookingEquipmentUnits = nil, numberOfWarmingHeatingEquipmentUnits = nil)
5145
5400
  @totalGrossFloorArea = totalGrossFloorArea
5146
5401
  @weeklyOperatingHours = weeklyOperatingHours
5147
5402
  @numberOfWorkers = numberOfWorkers
@@ -5154,6 +5409,9 @@ module PortfolioManager
5154
5409
  @percentHeated = percentHeated
5155
5410
  @areaOfAllWalkInRefrigerationUnits = areaOfAllWalkInRefrigerationUnits
5156
5411
  @lengthOfAllOpenClosedRefrigerationUnits = lengthOfAllOpenClosedRefrigerationUnits
5412
+ @numberOfFTEWorkers = numberOfFTEWorkers
5413
+ @numberOfCookingEquipmentUnits = numberOfCookingEquipmentUnits
5414
+ @numberOfWarmingHeatingEquipmentUnits = numberOfWarmingHeatingEquipmentUnits
5157
5415
  end
5158
5416
  end
5159
5417
 
@@ -5952,39 +6210,343 @@ module PortfolioManager
5952
6210
  end
5953
6211
  end
5954
6212
 
5955
- # {}propertyDesignType
6213
+ # {}evChargingStationType
5956
6214
  # @!attribute [rw] name
5957
- # @return [SOAP::SOAPString]
5958
- # @!attribute [rw] primaryFunction
5959
- # @return [PortfolioManager::Xml::PrimaryFunctionType]
5960
- # @!attribute [rw] grossFloorArea
5961
- # @return [PortfolioManager::Xml::GrossFloorAreaType]
5962
- # @!attribute [rw] plannedConstructionCompletionYear
5963
- # @return [SOAP::SOAPInt]
5964
- # @!attribute [rw] address
5965
- # @return [PortfolioManager::Xml::AddressType]
5966
- # @!attribute [rw] numberOfBuildings
5967
- # @return [SOAP::SOAPInt]
5968
- class PropertyDesignType
6215
+ # @return [Object]
6216
+ # @!attribute [rw] useDetails
6217
+ # @return [PortfolioManager::Xml::EvChargingStationType::UseDetails]
6218
+ # @!attribute [rw] audit
6219
+ # @return [PortfolioManager::Xml::LogType]
6220
+ class EvChargingStationType
6221
+
6222
+ # inner class for member: useDetails
6223
+ # {}useDetails
6224
+ # @!attribute [rw] numberOfLevelOneEvChargingStations
6225
+ # @return [PortfolioManager::Xml::UseDecimalType]
6226
+ # @!attribute [rw] numberOfLevelTwoEvChargingStations
6227
+ # @return [PortfolioManager::Xml::UseDecimalType]
6228
+ # @!attribute [rw] numberOfDcFastEvChargingStations
6229
+ # @return [PortfolioManager::Xml::UseDecimalType]
6230
+ class UseDetails
6231
+ attr_accessor :numberOfLevelOneEvChargingStations
6232
+ attr_accessor :numberOfLevelTwoEvChargingStations
6233
+ attr_accessor :numberOfDcFastEvChargingStations
6234
+
6235
+ def initialize(numberOfLevelOneEvChargingStations = nil, numberOfLevelTwoEvChargingStations = nil, numberOfDcFastEvChargingStations = nil)
6236
+ @numberOfLevelOneEvChargingStations = numberOfLevelOneEvChargingStations
6237
+ @numberOfLevelTwoEvChargingStations = numberOfLevelTwoEvChargingStations
6238
+ @numberOfDcFastEvChargingStations = numberOfDcFastEvChargingStations
6239
+ end
6240
+ end
6241
+
5969
6242
  attr_accessor :name
5970
- attr_accessor :primaryFunction
5971
- attr_accessor :grossFloorArea
5972
- attr_accessor :plannedConstructionCompletionYear
5973
- attr_accessor :address
5974
- attr_accessor :numberOfBuildings
6243
+ attr_accessor :useDetails
6244
+ attr_accessor :audit
5975
6245
 
5976
- def initialize(name = nil, primaryFunction = nil, grossFloorArea = nil, plannedConstructionCompletionYear = nil, address = nil, numberOfBuildings = nil)
6246
+ def initialize(name = nil, useDetails = nil, audit = nil)
5977
6247
  @name = name
5978
- @primaryFunction = primaryFunction
5979
- @grossFloorArea = grossFloorArea
5980
- @plannedConstructionCompletionYear = plannedConstructionCompletionYear
5981
- @address = address
5982
- @numberOfBuildings = numberOfBuildings
6248
+ @useDetails = useDetails
6249
+ @audit = audit
5983
6250
  end
5984
6251
  end
5985
6252
 
5986
- # {}designBaseType
5987
- # @!attribute [rw] propertyUses
6253
+ # {}vehicleDealershipType
6254
+ # @!attribute [rw] name
6255
+ # @return [Object]
6256
+ # @!attribute [rw] useDetails
6257
+ # @return [PortfolioManager::Xml::VehicleDealershipType::UseDetails]
6258
+ # @!attribute [rw] audit
6259
+ # @return [PortfolioManager::Xml::LogType]
6260
+ class VehicleDealershipType
6261
+
6262
+ # inner class for member: useDetails
6263
+ # {}useDetails
6264
+ # @!attribute [rw] totalGrossFloorArea
6265
+ # @return [PortfolioManager::Xml::GrossFloorAreaType]
6266
+ # @!attribute [rw] numberOfWorkers
6267
+ # @return [PortfolioManager::Xml::UseDecimalType]
6268
+ # @!attribute [rw] averageNumberOfVehiclesInInventory
6269
+ # @return [PortfolioManager::Xml::UseDecimalType]
6270
+ # @!attribute [rw] percentHeated
6271
+ # @return [PortfolioManager::Xml::PercentHeatedType]
6272
+ # @!attribute [rw] percentCooled
6273
+ # @return [PortfolioManager::Xml::PercentCooledType]
6274
+ # @!attribute [rw] weeklyOperatingHours
6275
+ # @return [PortfolioManager::Xml::UseDecimalType]
6276
+ # @!attribute [rw] numberOfComputers
6277
+ # @return [PortfolioManager::Xml::UseDecimalType]
6278
+ class UseDetails
6279
+ attr_accessor :totalGrossFloorArea
6280
+ attr_accessor :numberOfWorkers
6281
+ attr_accessor :averageNumberOfVehiclesInInventory
6282
+ attr_accessor :percentHeated
6283
+ attr_accessor :percentCooled
6284
+ attr_accessor :weeklyOperatingHours
6285
+ attr_accessor :numberOfComputers
6286
+
6287
+ def initialize(totalGrossFloorArea = nil, numberOfWorkers = nil, averageNumberOfVehiclesInInventory = nil, percentHeated = nil, percentCooled = nil, weeklyOperatingHours = nil, numberOfComputers = nil)
6288
+ @totalGrossFloorArea = totalGrossFloorArea
6289
+ @numberOfWorkers = numberOfWorkers
6290
+ @averageNumberOfVehiclesInInventory = averageNumberOfVehiclesInInventory
6291
+ @percentHeated = percentHeated
6292
+ @percentCooled = percentCooled
6293
+ @weeklyOperatingHours = weeklyOperatingHours
6294
+ @numberOfComputers = numberOfComputers
6295
+ end
6296
+ end
6297
+
6298
+ attr_accessor :name
6299
+ attr_accessor :useDetails
6300
+ attr_accessor :audit
6301
+
6302
+ def initialize(name = nil, useDetails = nil, audit = nil)
6303
+ @name = name
6304
+ @useDetails = useDetails
6305
+ @audit = audit
6306
+ end
6307
+ end
6308
+
6309
+ # {}mailingCenterPostOfficeType
6310
+ # @!attribute [rw] name
6311
+ # @return [Object]
6312
+ # @!attribute [rw] useDetails
6313
+ # @return [PortfolioManager::Xml::MailingCenterPostOfficeType::UseDetails]
6314
+ # @!attribute [rw] audit
6315
+ # @return [PortfolioManager::Xml::LogType]
6316
+ class MailingCenterPostOfficeType
6317
+
6318
+ # inner class for member: useDetails
6319
+ # {}useDetails
6320
+ # @!attribute [rw] totalGrossFloorArea
6321
+ # @return [PortfolioManager::Xml::GrossFloorAreaType]
6322
+ # @!attribute [rw] weeklyOperatingHours
6323
+ # @return [PortfolioManager::Xml::UseDecimalType]
6324
+ # @!attribute [rw] numberOfWorkers
6325
+ # @return [PortfolioManager::Xml::UseDecimalType]
6326
+ # @!attribute [rw] numberOfComputers
6327
+ # @return [PortfolioManager::Xml::UseDecimalType]
6328
+ # @!attribute [rw] numberOfLettersPackagesPerYear
6329
+ # @return [PortfolioManager::Xml::UseIntegerType]
6330
+ # @!attribute [rw] deliveryFacility
6331
+ # @return [PortfolioManager::Xml::UseYesNoType]
6332
+ # @!attribute [rw] percentCooled
6333
+ # @return [PortfolioManager::Xml::PercentCooledType]
6334
+ # @!attribute [rw] percentHeated
6335
+ # @return [PortfolioManager::Xml::PercentHeatedType]
6336
+ class UseDetails
6337
+ attr_accessor :totalGrossFloorArea
6338
+ attr_accessor :weeklyOperatingHours
6339
+ attr_accessor :numberOfWorkers
6340
+ attr_accessor :numberOfComputers
6341
+ attr_accessor :numberOfLettersPackagesPerYear
6342
+ attr_accessor :deliveryFacility
6343
+ attr_accessor :percentCooled
6344
+ attr_accessor :percentHeated
6345
+
6346
+ def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, numberOfWorkers = nil, numberOfComputers = nil, numberOfLettersPackagesPerYear = nil, deliveryFacility = nil, percentCooled = nil, percentHeated = nil)
6347
+ @totalGrossFloorArea = totalGrossFloorArea
6348
+ @weeklyOperatingHours = weeklyOperatingHours
6349
+ @numberOfWorkers = numberOfWorkers
6350
+ @numberOfComputers = numberOfComputers
6351
+ @numberOfLettersPackagesPerYear = numberOfLettersPackagesPerYear
6352
+ @deliveryFacility = deliveryFacility
6353
+ @percentCooled = percentCooled
6354
+ @percentHeated = percentHeated
6355
+ end
6356
+ end
6357
+
6358
+ attr_accessor :name
6359
+ attr_accessor :useDetails
6360
+ attr_accessor :audit
6361
+
6362
+ def initialize(name = nil, useDetails = nil, audit = nil)
6363
+ @name = name
6364
+ @useDetails = useDetails
6365
+ @audit = audit
6366
+ end
6367
+ end
6368
+
6369
+ # {}customUseType
6370
+ # @!attribute [rw] name
6371
+ # @return [Object]
6372
+ # @!attribute [rw] useDetails
6373
+ # @return [PortfolioManager::Xml::CustomUseType::UseDetails]
6374
+ # @!attribute [rw] audit
6375
+ # @return [PortfolioManager::Xml::LogType]
6376
+ class CustomUseType
6377
+
6378
+ # inner class for member: useDetails
6379
+ # {}useDetails
6380
+ # @!attribute [rw] customUseDetail1
6381
+ # @return [PortfolioManager::Xml::CustomUseDetailsType]
6382
+ # @!attribute [rw] customUseDetail2
6383
+ # @return [PortfolioManager::Xml::CustomUseDetailsType]
6384
+ class UseDetails
6385
+ attr_accessor :customUseDetail1
6386
+ attr_accessor :customUseDetail2
6387
+
6388
+ def initialize(customUseDetail1 = nil, customUseDetail2 = nil)
6389
+ @customUseDetail1 = customUseDetail1
6390
+ @customUseDetail2 = customUseDetail2
6391
+ end
6392
+ end
6393
+
6394
+ attr_accessor :name
6395
+ attr_accessor :useDetails
6396
+ attr_accessor :audit
6397
+
6398
+ def initialize(name = nil, useDetails = nil, audit = nil)
6399
+ @name = name
6400
+ @useDetails = useDetails
6401
+ @audit = audit
6402
+ end
6403
+ end
6404
+
6405
+ # {}libraryType
6406
+ # @!attribute [rw] name
6407
+ # @return [Object]
6408
+ # @!attribute [rw] useDetails
6409
+ # @return [PortfolioManager::Xml::LibraryType::UseDetails]
6410
+ # @!attribute [rw] audit
6411
+ # @return [PortfolioManager::Xml::LogType]
6412
+ class LibraryType
6413
+
6414
+ # inner class for member: useDetails
6415
+ # {}useDetails
6416
+ # @!attribute [rw] totalGrossFloorArea
6417
+ # @return [PortfolioManager::Xml::GrossFloorAreaType]
6418
+ # @!attribute [rw] weeklyOperatingHours
6419
+ # @return [PortfolioManager::Xml::UseDecimalType]
6420
+ # @!attribute [rw] numberOfWorkers
6421
+ # @return [PortfolioManager::Xml::UseDecimalType]
6422
+ # @!attribute [rw] percentHeated
6423
+ # @return [PortfolioManager::Xml::PercentHeatedType]
6424
+ # @!attribute [rw] percentCooled
6425
+ # @return [PortfolioManager::Xml::PercentCooledType]
6426
+ # @!attribute [rw] numberOfComputers
6427
+ # @return [PortfolioManager::Xml::UseDecimalType]
6428
+ class UseDetails
6429
+ attr_accessor :totalGrossFloorArea
6430
+ attr_accessor :weeklyOperatingHours
6431
+ attr_accessor :numberOfWorkers
6432
+ attr_accessor :percentHeated
6433
+ attr_accessor :percentCooled
6434
+ attr_accessor :numberOfComputers
6435
+
6436
+ def initialize(totalGrossFloorArea = nil, weeklyOperatingHours = nil, numberOfWorkers = nil, percentHeated = nil, percentCooled = nil, numberOfComputers = nil)
6437
+ @totalGrossFloorArea = totalGrossFloorArea
6438
+ @weeklyOperatingHours = weeklyOperatingHours
6439
+ @numberOfWorkers = numberOfWorkers
6440
+ @percentHeated = percentHeated
6441
+ @percentCooled = percentCooled
6442
+ @numberOfComputers = numberOfComputers
6443
+ end
6444
+ end
6445
+
6446
+ attr_accessor :name
6447
+ attr_accessor :useDetails
6448
+ attr_accessor :audit
6449
+
6450
+ def initialize(name = nil, useDetails = nil, audit = nil)
6451
+ @name = name
6452
+ @useDetails = useDetails
6453
+ @audit = audit
6454
+ end
6455
+ end
6456
+
6457
+ # {}museumType
6458
+ # @!attribute [rw] name
6459
+ # @return [Object]
6460
+ # @!attribute [rw] useDetails
6461
+ # @return [PortfolioManager::Xml::MuseumType::UseDetails]
6462
+ # @!attribute [rw] audit
6463
+ # @return [PortfolioManager::Xml::LogType]
6464
+ class MuseumType
6465
+
6466
+ # inner class for member: useDetails
6467
+ # {}useDetails
6468
+ # @!attribute [rw] totalGrossFloorArea
6469
+ # @return [PortfolioManager::Xml::GrossFloorAreaType]
6470
+ # @!attribute [rw] numberOfWorkers
6471
+ # @return [PortfolioManager::Xml::UseDecimalType]
6472
+ # @!attribute [rw] precisionControlsForTemperatureAndHumidity
6473
+ # @return [PortfolioManager::Xml::UseYesNoType]
6474
+ # @!attribute [rw] grossFloorAreaThatIsExhibitSpace
6475
+ # @return [PortfolioManager::Xml::OptionalFloorAreaType]
6476
+ # @!attribute [rw] percentHeated
6477
+ # @return [PortfolioManager::Xml::PercentHeatedType]
6478
+ # @!attribute [rw] percentCooled
6479
+ # @return [PortfolioManager::Xml::PercentCooledType]
6480
+ # @!attribute [rw] numberOfComputers
6481
+ # @return [PortfolioManager::Xml::UseDecimalType]
6482
+ # @!attribute [rw] weeklyOperatingHours
6483
+ # @return [PortfolioManager::Xml::UseDecimalType]
6484
+ class UseDetails
6485
+ attr_accessor :totalGrossFloorArea
6486
+ attr_accessor :numberOfWorkers
6487
+ attr_accessor :precisionControlsForTemperatureAndHumidity
6488
+ attr_accessor :grossFloorAreaThatIsExhibitSpace
6489
+ attr_accessor :percentHeated
6490
+ attr_accessor :percentCooled
6491
+ attr_accessor :numberOfComputers
6492
+ attr_accessor :weeklyOperatingHours
6493
+
6494
+ def initialize(totalGrossFloorArea = nil, numberOfWorkers = nil, precisionControlsForTemperatureAndHumidity = nil, grossFloorAreaThatIsExhibitSpace = nil, percentHeated = nil, percentCooled = nil, numberOfComputers = nil, weeklyOperatingHours = nil)
6495
+ @totalGrossFloorArea = totalGrossFloorArea
6496
+ @numberOfWorkers = numberOfWorkers
6497
+ @precisionControlsForTemperatureAndHumidity = precisionControlsForTemperatureAndHumidity
6498
+ @grossFloorAreaThatIsExhibitSpace = grossFloorAreaThatIsExhibitSpace
6499
+ @percentHeated = percentHeated
6500
+ @percentCooled = percentCooled
6501
+ @numberOfComputers = numberOfComputers
6502
+ @weeklyOperatingHours = weeklyOperatingHours
6503
+ end
6504
+ end
6505
+
6506
+ attr_accessor :name
6507
+ attr_accessor :useDetails
6508
+ attr_accessor :audit
6509
+
6510
+ def initialize(name = nil, useDetails = nil, audit = nil)
6511
+ @name = name
6512
+ @useDetails = useDetails
6513
+ @audit = audit
6514
+ end
6515
+ end
6516
+
6517
+ # {}propertyDesignType
6518
+ # @!attribute [rw] name
6519
+ # @return [SOAP::SOAPString]
6520
+ # @!attribute [rw] primaryFunction
6521
+ # @return [PortfolioManager::Xml::PrimaryFunctionType]
6522
+ # @!attribute [rw] grossFloorArea
6523
+ # @return [PortfolioManager::Xml::GrossFloorAreaType]
6524
+ # @!attribute [rw] plannedConstructionCompletionYear
6525
+ # @return [SOAP::SOAPInt]
6526
+ # @!attribute [rw] address
6527
+ # @return [PortfolioManager::Xml::AddressType]
6528
+ # @!attribute [rw] numberOfBuildings
6529
+ # @return [SOAP::SOAPInt]
6530
+ class PropertyDesignType
6531
+ attr_accessor :name
6532
+ attr_accessor :primaryFunction
6533
+ attr_accessor :grossFloorArea
6534
+ attr_accessor :plannedConstructionCompletionYear
6535
+ attr_accessor :address
6536
+ attr_accessor :numberOfBuildings
6537
+
6538
+ def initialize(name = nil, primaryFunction = nil, grossFloorArea = nil, plannedConstructionCompletionYear = nil, address = nil, numberOfBuildings = nil)
6539
+ @name = name
6540
+ @primaryFunction = primaryFunction
6541
+ @grossFloorArea = grossFloorArea
6542
+ @plannedConstructionCompletionYear = plannedConstructionCompletionYear
6543
+ @address = address
6544
+ @numberOfBuildings = numberOfBuildings
6545
+ end
6546
+ end
6547
+
6548
+ # {}designBaseType
6549
+ # @!attribute [rw] propertyUses
5988
6550
  # @return [PortfolioManager::Xml::DesignBaseType::PropertyUses]
5989
6551
  # @!attribute [rw] drinkingWaterInfluentFlow
5990
6552
  # @return [SOAP::SOAPDecimal]
@@ -6081,9 +6643,9 @@ module PortfolioManager
6081
6643
  # @!attribute [rw] personalServices
6082
6644
  # @return [PortfolioManager::Xml::OtherType]
6083
6645
  # @!attribute [rw] mailingCenterPostOffice
6084
- # @return [PortfolioManager::Xml::OtherType]
6646
+ # @return [PortfolioManager::Xml::MailingCenterPostOfficeType]
6085
6647
  # @!attribute [rw] library
6086
- # @return [PortfolioManager::Xml::OtherType]
6648
+ # @return [PortfolioManager::Xml::LibraryType]
6087
6649
  # @!attribute [rw] otherSpecialityHospital
6088
6650
  # @return [PortfolioManager::Xml::OtherType]
6089
6651
  # @!attribute [rw] conventionCenter
@@ -6102,10 +6664,10 @@ module PortfolioManager
6102
6664
  # @return [PortfolioManager::Xml::OtherType]
6103
6665
  # @!attribute [rw] zoo
6104
6666
  # @return [PortfolioManager::Xml::OtherType]
6105
- # @!attribute [rw] automobileDealership
6106
- # @return [PortfolioManager::Xml::OtherType]
6667
+ # @!attribute [rw] vehicleDealership
6668
+ # @return [PortfolioManager::Xml::VehicleDealershipType]
6107
6669
  # @!attribute [rw] museum
6108
- # @return [PortfolioManager::Xml::OtherType]
6670
+ # @return [PortfolioManager::Xml::MuseumType]
6109
6671
  # @!attribute [rw] otherRecreation
6110
6672
  # @return [PortfolioManager::Xml::OtherType]
6111
6673
  # @!attribute [rw] otherRestaurantBar
@@ -6172,6 +6734,8 @@ module PortfolioManager
6172
6734
  # @return [PortfolioManager::Xml::ConvenienceStoreWithGasStationType]
6173
6735
  # @!attribute [rw] other
6174
6736
  # @return [PortfolioManager::Xml::OtherType]
6737
+ # @!attribute [rw] electricVehicleChargingStation
6738
+ # @return [PortfolioManager::Xml::EvChargingStationType]
6175
6739
  class PropertyUses
6176
6740
  attr_accessor :prison
6177
6741
  attr_accessor :refrigeratedWarehouse
@@ -6224,7 +6788,7 @@ module PortfolioManager
6224
6788
  attr_accessor :barNightclub
6225
6789
  attr_accessor :otherUtility
6226
6790
  attr_accessor :zoo
6227
- attr_accessor :automobileDealership
6791
+ attr_accessor :vehicleDealership
6228
6792
  attr_accessor :museum
6229
6793
  attr_accessor :otherRecreation
6230
6794
  attr_accessor :otherRestaurantBar
@@ -6259,8 +6823,9 @@ module PortfolioManager
6259
6823
  attr_accessor :otherMall
6260
6824
  attr_accessor :convenienceStoreWithGasStation
6261
6825
  attr_accessor :other
6826
+ attr_accessor :electricVehicleChargingStation
6262
6827
 
6263
- def initialize(prison = [], refrigeratedWarehouse = [], retail = [], hospital = [], medicalOffice = [], dataCenter = [], courthouse = [], singleFamilyHome = [], nonRefrigeratedWarehouse = [], multifamilyHousing = [], office = [], wholesaleClubSupercenter = [], selfStorageFacility = [], seniorLivingCommunity = [], residentialCareFacility = [], swimmingPool = [], residenceHallDormitory = [], wastewaterTreatmentPlant = [], distributionCenter = [], worshipFacility = [], financialOffice = [], drinkingWaterTreatmentAndDistribution = [], parking = [], supermarket = [], barracks = [], hotel = [], k12School = [], bankBranch = [], collegeUniversity = [], indoorArena = [], otherStadium = [], stadiumClosed = [], stadiumOpen = [], manufacturingIndustrialPlant = [], ambulatorySurgicalCenter = [], bowlingAlley = [], otherPublicServices = [], otherLodgingResidential = [], casino = [], personalServices = [], mailingCenterPostOffice = [], library = [], otherSpecialityHospital = [], conventionCenter = [], veterinaryOffice = [], urgentCareClinicOtherOutpatient = [], energyPowerStation = [], otherServices = [], barNightclub = [], otherUtility = [], zoo = [], automobileDealership = [], museum = [], otherRecreation = [], otherRestaurantBar = [], lifestyleCenter = [], policeStation = [], preschoolDaycare = [], raceTrack = [], fastFoodRestaurant = [], laboratory = [], convenienceStoreWithoutGasStation = [], repairServices = [], otherTechnologyScience = [], fireStation = [], foodSales = [], performingArts = [], outpatientRehabilitationPhysicalTherapy = [], stripMall = [], rollerRink = [], otherEducation = [], fitnessCenterHealthClubGym = [], aquarium = [], foodService = [], restaurant = [], enclosedMall = [], iceCurlingRink = [], adultEducation = [], otherEntertainmentPublicAssembly = [], movieTheater = [], transportationTerminalStation = [], vocationalSchool = [], socialMeetingHall = [], otherMall = [], convenienceStoreWithGasStation = [], other = [])
6828
+ def initialize(prison = [], refrigeratedWarehouse = [], retail = [], hospital = [], medicalOffice = [], dataCenter = [], courthouse = [], singleFamilyHome = [], nonRefrigeratedWarehouse = [], multifamilyHousing = [], office = [], wholesaleClubSupercenter = [], selfStorageFacility = [], seniorLivingCommunity = [], residentialCareFacility = [], swimmingPool = [], residenceHallDormitory = [], wastewaterTreatmentPlant = [], distributionCenter = [], worshipFacility = [], financialOffice = [], drinkingWaterTreatmentAndDistribution = [], parking = [], supermarket = [], barracks = [], hotel = [], k12School = [], bankBranch = [], collegeUniversity = [], indoorArena = [], otherStadium = [], stadiumClosed = [], stadiumOpen = [], manufacturingIndustrialPlant = [], ambulatorySurgicalCenter = [], bowlingAlley = [], otherPublicServices = [], otherLodgingResidential = [], casino = [], personalServices = [], mailingCenterPostOffice = [], library = [], otherSpecialityHospital = [], conventionCenter = [], veterinaryOffice = [], urgentCareClinicOtherOutpatient = [], energyPowerStation = [], otherServices = [], barNightclub = [], otherUtility = [], zoo = [], vehicleDealership = [], museum = [], otherRecreation = [], otherRestaurantBar = [], lifestyleCenter = [], policeStation = [], preschoolDaycare = [], raceTrack = [], fastFoodRestaurant = [], laboratory = [], convenienceStoreWithoutGasStation = [], repairServices = [], otherTechnologyScience = [], fireStation = [], foodSales = [], performingArts = [], outpatientRehabilitationPhysicalTherapy = [], stripMall = [], rollerRink = [], otherEducation = [], fitnessCenterHealthClubGym = [], aquarium = [], foodService = [], restaurant = [], enclosedMall = [], iceCurlingRink = [], adultEducation = [], otherEntertainmentPublicAssembly = [], movieTheater = [], transportationTerminalStation = [], vocationalSchool = [], socialMeetingHall = [], otherMall = [], convenienceStoreWithGasStation = [], other = [], electricVehicleChargingStation = [])
6264
6829
  @prison = prison
6265
6830
  @refrigeratedWarehouse = refrigeratedWarehouse
6266
6831
  @retail = retail
@@ -6312,7 +6877,7 @@ module PortfolioManager
6312
6877
  @barNightclub = barNightclub
6313
6878
  @otherUtility = otherUtility
6314
6879
  @zoo = zoo
6315
- @automobileDealership = automobileDealership
6880
+ @vehicleDealership = vehicleDealership
6316
6881
  @museum = museum
6317
6882
  @otherRecreation = otherRecreation
6318
6883
  @otherRestaurantBar = otherRestaurantBar
@@ -6347,6 +6912,7 @@ module PortfolioManager
6347
6912
  @otherMall = otherMall
6348
6913
  @convenienceStoreWithGasStation = convenienceStoreWithGasStation
6349
6914
  @other = other
6915
+ @electricVehicleChargingStation = electricVehicleChargingStation
6350
6916
  end
6351
6917
  end
6352
6918
 
@@ -6927,78 +7493,702 @@ module PortfolioManager
6927
7493
  end
6928
7494
  end
6929
7495
 
6930
- # {}wasteMeterDataType
6931
- # @!attribute [rw] wasteData
6932
- # @return [PortfolioManager::Xml::WasteMeterEntryType]
6933
- # @!attribute [rw] links
6934
- # @return [PortfolioManager::Xml::LinksType]
6935
- class WasteMeterDataType
6936
- attr_accessor :wasteData
6937
- attr_accessor :links
7496
+ # {}wasteMeterDataType
7497
+ # @!attribute [rw] wasteData
7498
+ # @return [PortfolioManager::Xml::WasteMeterEntryType]
7499
+ # @!attribute [rw] links
7500
+ # @return [PortfolioManager::Xml::LinksType]
7501
+ class WasteMeterDataType
7502
+ attr_accessor :wasteData
7503
+ attr_accessor :links
7504
+
7505
+ def initialize(wasteData = [], links = nil)
7506
+ @wasteData = wasteData
7507
+ @links = links
7508
+ end
7509
+ end
7510
+
7511
+ # {}disposalDestinationType
7512
+ # @!attribute [rw] landfillPercentage
7513
+ # @return [SOAP::SOAPDecimal]
7514
+ # @!attribute [rw] incinerationPercentage
7515
+ # @return [SOAP::SOAPDecimal]
7516
+ # @!attribute [rw] wasteToEnergyPercentage
7517
+ # @return [SOAP::SOAPDecimal]
7518
+ # @!attribute [rw] unknownDestPercentage
7519
+ # @return [SOAP::SOAPDecimal]
7520
+ class DisposalDestinationType
7521
+ attr_accessor :landfillPercentage
7522
+ attr_accessor :incinerationPercentage
7523
+ attr_accessor :wasteToEnergyPercentage
7524
+ attr_accessor :unknownDestPercentage
7525
+
7526
+ def initialize(landfillPercentage = nil, incinerationPercentage = nil, wasteToEnergyPercentage = nil, unknownDestPercentage = nil)
7527
+ @landfillPercentage = landfillPercentage
7528
+ @incinerationPercentage = incinerationPercentage
7529
+ @wasteToEnergyPercentage = wasteToEnergyPercentage
7530
+ @unknownDestPercentage = unknownDestPercentage
7531
+ end
7532
+ end
7533
+
7534
+ # {}billboardMetricsType
7535
+ class BillboardMetricsType < ::Array
7536
+ end
7537
+
7538
+ # {}billboardMetricType
7539
+ # @!attribute [rw] xmlattr_name
7540
+ # @return [SOAP::SOAPString]
7541
+ # @!attribute [rw] xmlattr_dataType
7542
+ # @return [SOAP::SOAPString]
7543
+ class BillboardMetricType
7544
+ AttrDataType = XSD::QName.new(nil, "dataType")
7545
+ AttrName = XSD::QName.new(nil, "name")
7546
+
7547
+ def __xmlattr
7548
+ @__xmlattr ||= {}
7549
+ end
7550
+
7551
+ def xmlattr_name
7552
+ __xmlattr[AttrName]
7553
+ end
7554
+
7555
+ def xmlattr_name=(value)
7556
+ __xmlattr[AttrName] = value
7557
+ end
7558
+
7559
+ def xmlattr_dataType
7560
+ __xmlattr[AttrDataType]
7561
+ end
7562
+
7563
+ def xmlattr_dataType=(value)
7564
+ __xmlattr[AttrDataType] = value
7565
+ end
7566
+
7567
+ def initialize
7568
+ @__xmlattr = {}
7569
+ end
7570
+ end
7571
+
7572
+ # {}heyType
7573
+ # @!attribute [rw] propertyInfo
7574
+ # @return [PortfolioManager::Xml::HeyType::PropertyInfo]
7575
+ # @!attribute [rw] meter
7576
+ # @return [PortfolioManager::Xml::HeyType::Meter]
7577
+ class HeyType
7578
+
7579
+ # inner class for member: propertyInfo
7580
+ # {}propertyInfo
7581
+ # @!attribute [rw] postalCode
7582
+ # @return [SOAP::SOAPString]
7583
+ # @!attribute [rw] numberOfOccupants
7584
+ # @return [SOAP::SOAPInt]
7585
+ # @!attribute [rw] grossFloorArea
7586
+ # @return [PortfolioManager::Xml::GrossFloorAreaType]
7587
+ class PropertyInfo
7588
+ attr_accessor :postalCode
7589
+ attr_accessor :numberOfOccupants
7590
+ attr_accessor :grossFloorArea
7591
+
7592
+ def initialize(postalCode = nil, numberOfOccupants = nil, grossFloorArea = nil)
7593
+ @postalCode = postalCode
7594
+ @numberOfOccupants = numberOfOccupants
7595
+ @grossFloorArea = grossFloorArea
7596
+ end
7597
+ end
7598
+
7599
+ # inner class for member: meter
7600
+ # {}meter
7601
+ # @!attribute [rw] type
7602
+ # @return [PortfolioManager::Xml::AllEnergyMetersType]
7603
+ # @!attribute [rw] unitOfMeasure
7604
+ # @return [PortfolioManager::Xml::DesignUnitOfMeasure]
7605
+ # @!attribute [rw] meterData
7606
+ # @return [PortfolioManager::Xml::HeyType::Meter::MeterData]
7607
+ class Meter
7608
+
7609
+ # inner class for member: meterData
7610
+ # {}meterData
7611
+ class MeterData < ::Array
7612
+ end
7613
+
7614
+ attr_accessor :type
7615
+ attr_accessor :unitOfMeasure
7616
+ attr_accessor :meterData
7617
+
7618
+ def initialize(type = nil, unitOfMeasure = nil, meterData = nil)
7619
+ @type = type
7620
+ @unitOfMeasure = unitOfMeasure
7621
+ @meterData = meterData
7622
+ end
7623
+ end
7624
+
7625
+ attr_accessor :propertyInfo
7626
+ attr_accessor :meter
7627
+
7628
+ def initialize(propertyInfo = nil, meter = [])
7629
+ @propertyInfo = propertyInfo
7630
+ @meter = meter
7631
+ end
7632
+ end
7633
+
7634
+ # {}reportMetrics
7635
+ class ReportMetrics < ::Array
7636
+
7637
+ # {}group
7638
+ # @!attribute [rw] metrics
7639
+ # @return [PortfolioManager::Xml::ReportMetrics::Group::Metrics]
7640
+ # @!attribute [rw] xmlattr_id
7641
+ # @return [SOAP::SOAPLong]
7642
+ # @!attribute [rw] xmlattr_name
7643
+ # @return [SOAP::SOAPString]
7644
+ class Group
7645
+ AttrId = XSD::QName.new(nil, "id")
7646
+ AttrName = XSD::QName.new(nil, "name")
7647
+
7648
+ # inner class for member: metrics
7649
+ # {}metrics
7650
+ class Metrics < ::Array
7651
+
7652
+ # {}metric
7653
+ # @!attribute [rw] xmlattr_id
7654
+ # @return [SOAP::SOAPLong]
7655
+ # @!attribute [rw] xmlattr_name
7656
+ # @return [SOAP::SOAPString]
7657
+ # @!attribute [rw] xmlattr_description
7658
+ # @return [SOAP::SOAPString]
7659
+ # @!attribute [rw] xmlattr_dataType
7660
+ # @return [SOAP::SOAPString]
7661
+ # @!attribute [rw] xmlattr_uom
7662
+ # @return [SOAP::SOAPString]
7663
+ # @!attribute [rw] xmlattr_availableToCustomMetrics
7664
+ # @return [SOAP::SOAPBoolean]
7665
+ class Metric
7666
+ AttrAvailableToCustomMetrics = XSD::QName.new(nil, "availableToCustomMetrics")
7667
+ AttrDataType = XSD::QName.new(nil, "dataType")
7668
+ AttrDescription = XSD::QName.new(nil, "description")
7669
+ AttrId = XSD::QName.new(nil, "id")
7670
+ AttrName = XSD::QName.new(nil, "name")
7671
+ AttrUom = XSD::QName.new(nil, "uom")
7672
+
7673
+ def __xmlattr
7674
+ @__xmlattr ||= {}
7675
+ end
7676
+
7677
+ def xmlattr_id
7678
+ __xmlattr[AttrId]
7679
+ end
7680
+
7681
+ def xmlattr_id=(value)
7682
+ __xmlattr[AttrId] = value
7683
+ end
7684
+
7685
+ def xmlattr_name
7686
+ __xmlattr[AttrName]
7687
+ end
7688
+
7689
+ def xmlattr_name=(value)
7690
+ __xmlattr[AttrName] = value
7691
+ end
7692
+
7693
+ def xmlattr_description
7694
+ __xmlattr[AttrDescription]
7695
+ end
7696
+
7697
+ def xmlattr_description=(value)
7698
+ __xmlattr[AttrDescription] = value
7699
+ end
7700
+
7701
+ def xmlattr_dataType
7702
+ __xmlattr[AttrDataType]
7703
+ end
7704
+
7705
+ def xmlattr_dataType=(value)
7706
+ __xmlattr[AttrDataType] = value
7707
+ end
7708
+
7709
+ def xmlattr_uom
7710
+ __xmlattr[AttrUom]
7711
+ end
7712
+
7713
+ def xmlattr_uom=(value)
7714
+ __xmlattr[AttrUom] = value
7715
+ end
7716
+
7717
+ def xmlattr_availableToCustomMetrics
7718
+ __xmlattr[AttrAvailableToCustomMetrics]
7719
+ end
7720
+
7721
+ def xmlattr_availableToCustomMetrics=(value)
7722
+ __xmlattr[AttrAvailableToCustomMetrics] = value
7723
+ end
7724
+
7725
+ def initialize
7726
+ @__xmlattr = {}
7727
+ end
7728
+ end
7729
+ end
7730
+
7731
+ attr_accessor :metrics
7732
+
7733
+ def __xmlattr
7734
+ @__xmlattr ||= {}
7735
+ end
7736
+
7737
+ def xmlattr_id
7738
+ __xmlattr[AttrId]
7739
+ end
7740
+
7741
+ def xmlattr_id=(value)
7742
+ __xmlattr[AttrId] = value
7743
+ end
7744
+
7745
+ def xmlattr_name
7746
+ __xmlattr[AttrName]
7747
+ end
7748
+
7749
+ def xmlattr_name=(value)
7750
+ __xmlattr[AttrName] = value
7751
+ end
7752
+
7753
+ def initialize(metrics = nil)
7754
+ @metrics = metrics
7755
+ @__xmlattr = {}
7756
+ end
7757
+ end
7758
+ end
7759
+
7760
+ # {}reportTemplateType
7761
+ # @!attribute [rw] id
7762
+ # @return [SOAP::SOAPLong]
7763
+ # @!attribute [rw] name
7764
+ # @return [SOAP::SOAPString]
7765
+ # @!attribute [rw] templateType
7766
+ # @return [SOAP::SOAPString]
7767
+ # @!attribute [rw] metrics
7768
+ # @return [PortfolioManager::Xml::ReportTemplateType::Metrics]
7769
+ # @!attribute [rw] reportId
7770
+ # @return [SOAP::SOAPLong]
7771
+ # @!attribute [rw] audit
7772
+ # @return [PortfolioManager::Xml::LogType]
7773
+ class ReportTemplateType
7774
+
7775
+ # inner class for member: metrics
7776
+ # {}metrics
7777
+ class Metrics < ::Array
7778
+ end
7779
+
7780
+ attr_accessor :id
7781
+ attr_accessor :name
7782
+ attr_accessor :templateType
7783
+ attr_accessor :metrics
7784
+ attr_accessor :reportId
7785
+ attr_accessor :audit
7786
+
7787
+ def initialize(id = nil, name = nil, templateType = nil, metrics = nil, reportId = nil, audit = nil)
7788
+ @id = id
7789
+ @name = name
7790
+ @templateType = templateType
7791
+ @metrics = metrics
7792
+ @reportId = reportId
7793
+ @audit = audit
7794
+ end
7795
+ end
7796
+
7797
+ # {}report
7798
+ # @!attribute [rw] id
7799
+ # @return [SOAP::SOAPLong]
7800
+ # @!attribute [rw] type
7801
+ # @return [PortfolioManager::Xml::ReportType]
7802
+ # @!attribute [rw] timeframe
7803
+ # @return [PortfolioManager::Xml::TimeframeType]
7804
+ # @!attribute [rw] templateId
7805
+ # @return [SOAP::SOAPLong]
7806
+ # @!attribute [rw] templateName
7807
+ # @return [SOAP::SOAPString]
7808
+ # @!attribute [rw] properties
7809
+ # @return [PortfolioManager::Xml::Report::Properties]
7810
+ # @!attribute [rw] reportGenerationStatus
7811
+ # @return [PortfolioManager::Xml::ReportStatusType]
7812
+ class Report
7813
+
7814
+ # inner class for member: properties
7815
+ # {}properties
7816
+ class Properties < ::Array
7817
+ end
7818
+
7819
+ attr_accessor :id
7820
+ attr_accessor :type
7821
+ attr_accessor :timeframe
7822
+ attr_accessor :templateId
7823
+ attr_accessor :templateName
7824
+ attr_accessor :properties
7825
+ attr_accessor :reportGenerationStatus
7826
+
7827
+ def initialize(id = nil, type = nil, timeframe = nil, templateId = nil, templateName = nil, properties = nil, reportGenerationStatus = nil)
7828
+ @id = id
7829
+ @type = type
7830
+ @timeframe = timeframe
7831
+ @templateId = templateId
7832
+ @templateName = templateName
7833
+ @properties = properties
7834
+ @reportGenerationStatus = reportGenerationStatus
7835
+ end
7836
+ end
7837
+
7838
+ # {}timeframeType
7839
+ # @!attribute [rw] currentPeriod
7840
+ # @return [PortfolioManager::Xml::TimeframeType::CurrentPeriod]
7841
+ # @!attribute [rw] baselinePeriod
7842
+ # @return [PortfolioManager::Xml::TimeframeType::BaselinePeriod]
7843
+ # @!attribute [rw] currentVsBaseline
7844
+ # @return [PortfolioManager::Xml::TimeframeType::CurrentVsBaseline]
7845
+ # @!attribute [rw] singlePeriod
7846
+ # @return [PortfolioManager::Xml::TimeframeType::SinglePeriod]
7847
+ # @!attribute [rw] compareCurrentPeriod
7848
+ # @return [PortfolioManager::Xml::TimeframeType::CompareCurrentPeriod]
7849
+ # @!attribute [rw] compareBaselinePeriod
7850
+ # @return [PortfolioManager::Xml::TimeframeType::CompareBaselinePeriod]
7851
+ # @!attribute [rw] twoPeriods
7852
+ # @return [PortfolioManager::Xml::TimeframeType::TwoPeriods]
7853
+ # @!attribute [rw] dateRange
7854
+ # @return [PortfolioManager::Xml::TimeframeType::DateRange]
7855
+ class TimeframeType
7856
+
7857
+ # inner class for member: currentPeriod
7858
+ # {}currentPeriod
7859
+ # @!attribute [rw] meterType
7860
+ # @return [PortfolioManager::Xml::MeterCategoryType]
7861
+ class CurrentPeriod
7862
+ attr_accessor :meterType
7863
+
7864
+ def initialize(meterType = nil)
7865
+ @meterType = meterType
7866
+ end
7867
+ end
7868
+
7869
+ # inner class for member: baselinePeriod
7870
+ # {}baselinePeriod
7871
+ # @!attribute [rw] meterType
7872
+ # @return [PortfolioManager::Xml::MeterCategoryType]
7873
+ class BaselinePeriod
7874
+ attr_accessor :meterType
7875
+
7876
+ def initialize(meterType = nil)
7877
+ @meterType = meterType
7878
+ end
7879
+ end
7880
+
7881
+ # inner class for member: currentVsBaseline
7882
+ # {}currentVsBaseline
7883
+ # @!attribute [rw] meterType
7884
+ # @return [PortfolioManager::Xml::MeterCategoryType]
7885
+ class CurrentVsBaseline
7886
+ attr_accessor :meterType
7887
+
7888
+ def initialize(meterType = nil)
7889
+ @meterType = meterType
7890
+ end
7891
+ end
7892
+
7893
+ # inner class for member: singlePeriod
7894
+ # {}singlePeriod
7895
+ # @!attribute [rw] periodEndingDate
7896
+ # @return [PortfolioManager::Xml::Ped]
7897
+ class SinglePeriod
7898
+ attr_accessor :periodEndingDate
7899
+
7900
+ def initialize(periodEndingDate = nil)
7901
+ @periodEndingDate = periodEndingDate
7902
+ end
7903
+ end
7904
+
7905
+ # inner class for member: compareCurrentPeriod
7906
+ # {}compareCurrentPeriod
7907
+ # @!attribute [rw] meterType
7908
+ # @return [PortfolioManager::Xml::MeterCategoryType]
7909
+ # @!attribute [rw] periodEndingDate
7910
+ # @return [PortfolioManager::Xml::Ped]
7911
+ class CompareCurrentPeriod
7912
+ attr_accessor :meterType
7913
+ attr_accessor :periodEndingDate
7914
+
7915
+ def initialize(meterType = nil, periodEndingDate = nil)
7916
+ @meterType = meterType
7917
+ @periodEndingDate = periodEndingDate
7918
+ end
7919
+ end
7920
+
7921
+ # inner class for member: compareBaselinePeriod
7922
+ # {}compareBaselinePeriod
7923
+ # @!attribute [rw] meterType
7924
+ # @return [PortfolioManager::Xml::MeterCategoryType]
7925
+ # @!attribute [rw] periodEndingDate
7926
+ # @return [PortfolioManager::Xml::Ped]
7927
+ class CompareBaselinePeriod
7928
+ attr_accessor :meterType
7929
+ attr_accessor :periodEndingDate
7930
+
7931
+ def initialize(meterType = nil, periodEndingDate = nil)
7932
+ @meterType = meterType
7933
+ @periodEndingDate = periodEndingDate
7934
+ end
7935
+ end
7936
+
7937
+ # inner class for member: twoPeriods
7938
+ # {}twoPeriods
7939
+ # @!attribute [rw] periodEndingDateOne
7940
+ # @return [PortfolioManager::Xml::Ped]
7941
+ # @!attribute [rw] periodEndingDateTwo
7942
+ # @return [PortfolioManager::Xml::Ped]
7943
+ class TwoPeriods
7944
+ attr_accessor :periodEndingDateOne
7945
+ attr_accessor :periodEndingDateTwo
7946
+
7947
+ def initialize(periodEndingDateOne = nil, periodEndingDateTwo = nil)
7948
+ @periodEndingDateOne = periodEndingDateOne
7949
+ @periodEndingDateTwo = periodEndingDateTwo
7950
+ end
7951
+ end
7952
+
7953
+ # inner class for member: dateRange
7954
+ # {}dateRange
7955
+ # @!attribute [rw] fromPeriodEndingDate
7956
+ # @return [PortfolioManager::Xml::Ped]
7957
+ # @!attribute [rw] toPeriodEndingDate
7958
+ # @return [PortfolioManager::Xml::Ped]
7959
+ # @!attribute [rw] interval
7960
+ # @return [PortfolioManager::Xml::ReportingIntervalType]
7961
+ class DateRange
7962
+ attr_accessor :fromPeriodEndingDate
7963
+ attr_accessor :toPeriodEndingDate
7964
+ attr_accessor :interval
7965
+
7966
+ def initialize(fromPeriodEndingDate = nil, toPeriodEndingDate = nil, interval = nil)
7967
+ @fromPeriodEndingDate = fromPeriodEndingDate
7968
+ @toPeriodEndingDate = toPeriodEndingDate
7969
+ @interval = interval
7970
+ end
7971
+ end
7972
+
7973
+ attr_accessor :currentPeriod
7974
+ attr_accessor :baselinePeriod
7975
+ attr_accessor :currentVsBaseline
7976
+ attr_accessor :singlePeriod
7977
+ attr_accessor :compareCurrentPeriod
7978
+ attr_accessor :compareBaselinePeriod
7979
+ attr_accessor :twoPeriods
7980
+ attr_accessor :dateRange
7981
+
7982
+ def initialize(currentPeriod = nil, baselinePeriod = nil, currentVsBaseline = nil, singlePeriod = nil, compareCurrentPeriod = nil, compareBaselinePeriod = nil, twoPeriods = nil, dateRange = nil)
7983
+ @currentPeriod = currentPeriod
7984
+ @baselinePeriod = baselinePeriod
7985
+ @currentVsBaseline = currentVsBaseline
7986
+ @singlePeriod = singlePeriod
7987
+ @compareCurrentPeriod = compareCurrentPeriod
7988
+ @compareBaselinePeriod = compareBaselinePeriod
7989
+ @twoPeriods = twoPeriods
7990
+ @dateRange = dateRange
7991
+ end
7992
+ end
7993
+
7994
+ # {}ped
7995
+ # @!attribute [rw] month
7996
+ # @return [SOAP::SOAPNonNegativeInteger]
7997
+ # @!attribute [rw] year
7998
+ # @return [SOAP::SOAPNonNegativeInteger]
7999
+ class Ped
8000
+ attr_accessor :month
8001
+ attr_accessor :year
8002
+
8003
+ def initialize(month = nil, year = nil)
8004
+ @month = month
8005
+ @year = year
8006
+ end
8007
+ end
8008
+
8009
+ # {}reportStatusDef
8010
+ # @!attribute [rw] status
8011
+ # @return [PortfolioManager::Xml::ReportStatusType]
8012
+ # @!attribute [rw] description
8013
+ # @return [SOAP::SOAPString]
8014
+ # @!attribute [rw] generationStartDate
8015
+ # @return [SOAP::SOAPDateTime]
8016
+ # @!attribute [rw] generationEndDate
8017
+ # @return [SOAP::SOAPDateTime]
8018
+ # @!attribute [rw] submittedDate
8019
+ # @return [SOAP::SOAPDateTime]
8020
+ class ReportStatusDef
8021
+ attr_accessor :status
8022
+ attr_accessor :description
8023
+ attr_accessor :generationStartDate
8024
+ attr_accessor :generationEndDate
8025
+ attr_accessor :submittedDate
8026
+
8027
+ def initialize(status = nil, description = nil, generationStartDate = nil, generationEndDate = nil, submittedDate = nil)
8028
+ @status = status
8029
+ @description = description
8030
+ @generationStartDate = generationStartDate
8031
+ @generationEndDate = generationEndDate
8032
+ @submittedDate = submittedDate
8033
+ end
8034
+ end
8035
+
8036
+ # {}dataResponse
8037
+ # @!attribute [rw] dataRequestId
8038
+ # @return [SOAP::SOAPLong]
8039
+ # @!attribute [rw] timeframe
8040
+ # @return [PortfolioManager::Xml::TimeframeType]
8041
+ # @!attribute [rw] properties
8042
+ # @return [PortfolioManager::Xml::DataResponse::Properties]
8043
+ # @!attribute [rw] xmlattr_id
8044
+ # @return [SOAP::SOAPLong]
8045
+ class DataResponse
8046
+ AttrId = XSD::QName.new(nil, "id")
6938
8047
 
6939
- def initialize(wasteData = [], links = nil)
6940
- @wasteData = wasteData
6941
- @links = links
8048
+ # inner class for member: properties
8049
+ # {}properties
8050
+ class Properties < ::Array
6942
8051
  end
6943
- end
6944
8052
 
6945
- # {}disposalDestinationType
6946
- # @!attribute [rw] landfillPercentage
6947
- # @return [SOAP::SOAPDecimal]
6948
- # @!attribute [rw] incinerationPercentage
6949
- # @return [SOAP::SOAPDecimal]
6950
- # @!attribute [rw] wasteToEnergyPercentage
6951
- # @return [SOAP::SOAPDecimal]
6952
- # @!attribute [rw] unknownDestPercentage
6953
- # @return [SOAP::SOAPDecimal]
6954
- class DisposalDestinationType
6955
- attr_accessor :landfillPercentage
6956
- attr_accessor :incinerationPercentage
6957
- attr_accessor :wasteToEnergyPercentage
6958
- attr_accessor :unknownDestPercentage
8053
+ attr_accessor :dataRequestId
8054
+ attr_accessor :timeframe
8055
+ attr_accessor :properties
6959
8056
 
6960
- def initialize(landfillPercentage = nil, incinerationPercentage = nil, wasteToEnergyPercentage = nil, unknownDestPercentage = nil)
6961
- @landfillPercentage = landfillPercentage
6962
- @incinerationPercentage = incinerationPercentage
6963
- @wasteToEnergyPercentage = wasteToEnergyPercentage
6964
- @unknownDestPercentage = unknownDestPercentage
8057
+ def __xmlattr
8058
+ @__xmlattr ||= {}
6965
8059
  end
6966
- end
6967
8060
 
6968
- # {}billboardMetricsType
6969
- class BillboardMetricsType < ::Array
8061
+ def xmlattr_id
8062
+ __xmlattr[AttrId]
8063
+ end
8064
+
8065
+ def xmlattr_id=(value)
8066
+ __xmlattr[AttrId] = value
8067
+ end
8068
+
8069
+ def initialize(dataRequestId = nil, timeframe = nil, properties = nil)
8070
+ @dataRequestId = dataRequestId
8071
+ @timeframe = timeframe
8072
+ @properties = properties
8073
+ @__xmlattr = {}
8074
+ end
6970
8075
  end
6971
8076
 
6972
- # {}billboardMetricType
6973
- # @!attribute [rw] xmlattr_name
8077
+ # {}dataRequest
8078
+ # @!attribute [rw] name
6974
8079
  # @return [SOAP::SOAPString]
6975
- # @!attribute [rw] xmlattr_dataType
8080
+ # @!attribute [rw] requesterDetails
8081
+ # @return [PortfolioManager::Xml::DataRequest::RequesterDetails]
8082
+ # @!attribute [rw] instructions
6976
8083
  # @return [SOAP::SOAPString]
6977
- class BillboardMetricType
6978
- AttrDataType = XSD::QName.new(nil, "dataType")
6979
- AttrName = XSD::QName.new(nil, "name")
8084
+ # @!attribute [rw] timeframe
8085
+ # @return [PortfolioManager::Xml::TimeframeType]
8086
+ # @!attribute [rw] locations
8087
+ # @return [PortfolioManager::Xml::DataRequest::Locations]
8088
+ # @!attribute [rw] dataRequestStatus
8089
+ # @return [PortfolioManager::Xml::DataRequestStatusType]
8090
+ # @!attribute [rw] dataRequestAcceptedBy
8091
+ # @return [SOAP::SOAPString]
8092
+ # @!attribute [rw] dataRequestAcceptedDate
8093
+ # @return [SOAP::SOAPDateTime]
8094
+ # @!attribute [rw] xmlattr_id
8095
+ # @return [SOAP::SOAPLong]
8096
+ class DataRequest
8097
+ AttrId = XSD::QName.new(nil, "id")
6980
8098
 
6981
- def __xmlattr
6982
- @__xmlattr ||= {}
8099
+ # inner class for member: requesterDetails
8100
+ # {}requesterDetails
8101
+ # @!attribute [rw] firstName
8102
+ # @return [SOAP::SOAPString]
8103
+ # @!attribute [rw] lastName
8104
+ # @return [SOAP::SOAPString]
8105
+ # @!attribute [rw] email
8106
+ # @return [SOAP::SOAPString]
8107
+ # @!attribute [rw] phone
8108
+ # @return [SOAP::SOAPString]
8109
+ class RequesterDetails
8110
+ attr_accessor :firstName
8111
+ attr_accessor :lastName
8112
+ attr_accessor :email
8113
+ attr_accessor :phone
8114
+
8115
+ def initialize(firstName = nil, lastName = nil, email = nil, phone = nil)
8116
+ @firstName = firstName
8117
+ @lastName = lastName
8118
+ @email = email
8119
+ @phone = phone
8120
+ end
6983
8121
  end
6984
8122
 
6985
- def xmlattr_name
6986
- __xmlattr[AttrName]
8123
+ # inner class for member: locations
8124
+ # {}locations
8125
+ class Locations < ::Array
8126
+
8127
+ # {}location
8128
+ # @!attribute [rw] xmlattr_country
8129
+ # @return [SOAP::SOAPString]
8130
+ # @!attribute [rw] xmlattr_state
8131
+ # @return [SOAP::SOAPString]
8132
+ class Location
8133
+ AttrCountry = XSD::QName.new(nil, "country")
8134
+ AttrState = XSD::QName.new(nil, "state")
8135
+
8136
+ def __xmlattr
8137
+ @__xmlattr ||= {}
8138
+ end
8139
+
8140
+ def xmlattr_country
8141
+ __xmlattr[AttrCountry]
8142
+ end
8143
+
8144
+ def xmlattr_country=(value)
8145
+ __xmlattr[AttrCountry] = value
8146
+ end
8147
+
8148
+ def xmlattr_state
8149
+ __xmlattr[AttrState]
8150
+ end
8151
+
8152
+ def xmlattr_state=(value)
8153
+ __xmlattr[AttrState] = value
8154
+ end
8155
+
8156
+ def initialize
8157
+ @__xmlattr = {}
8158
+ end
8159
+ end
6987
8160
  end
6988
8161
 
6989
- def xmlattr_name=(value)
6990
- __xmlattr[AttrName] = value
8162
+ attr_accessor :name
8163
+ attr_accessor :requesterDetails
8164
+ attr_accessor :instructions
8165
+ attr_accessor :timeframe
8166
+ attr_accessor :locations
8167
+ attr_accessor :dataRequestStatus
8168
+ attr_accessor :dataRequestAcceptedBy
8169
+ attr_accessor :dataRequestAcceptedDate
8170
+
8171
+ def __xmlattr
8172
+ @__xmlattr ||= {}
6991
8173
  end
6992
8174
 
6993
- def xmlattr_dataType
6994
- __xmlattr[AttrDataType]
8175
+ def xmlattr_id
8176
+ __xmlattr[AttrId]
6995
8177
  end
6996
8178
 
6997
- def xmlattr_dataType=(value)
6998
- __xmlattr[AttrDataType] = value
8179
+ def xmlattr_id=(value)
8180
+ __xmlattr[AttrId] = value
6999
8181
  end
7000
8182
 
7001
- def initialize
8183
+ def initialize(name = nil, requesterDetails = nil, instructions = nil, timeframe = nil, locations = nil, dataRequestStatus = nil, dataRequestAcceptedBy = nil, dataRequestAcceptedDate = nil)
8184
+ @name = name
8185
+ @requesterDetails = requesterDetails
8186
+ @instructions = instructions
8187
+ @timeframe = timeframe
8188
+ @locations = locations
8189
+ @dataRequestStatus = dataRequestStatus
8190
+ @dataRequestAcceptedBy = dataRequestAcceptedBy
8191
+ @dataRequestAcceptedDate = dataRequestAcceptedDate
7002
8192
  @__xmlattr = {}
7003
8193
  end
7004
8194
  end
@@ -7014,7 +8204,6 @@ module PortfolioManager
7014
8204
  AdultEducation = new("Adult Education")
7015
8205
  AmbulatorySurgicalCenter = new("Ambulatory Surgical Center")
7016
8206
  Aquarium = new("Aquarium")
7017
- AutomobileDealership = new("Automobile Dealership")
7018
8207
  BankBranch = new("Bank Branch")
7019
8208
  BarNightclub = new("Bar/Nightclub")
7020
8209
  Barracks = new("Barracks")
@@ -7027,7 +8216,8 @@ module PortfolioManager
7027
8216
  Courthouse = new("Courthouse")
7028
8217
  DataCenter = new("Data Center")
7029
8218
  DistributionCenter = new("Distribution Center")
7030
- DrinkingWaterTreatmentDistribution = new("Drinking Water Treatment & Distribution")
8219
+ DrinkingWaterTreatment38Distribution = new("Drinking Water Treatment &#38; Distribution")
8220
+ ElectricVehicleChargingStation = new("Electric Vehicle Charging Station")
7031
8221
  EnclosedMall = new("Enclosed Mall")
7032
8222
  EnergyPowerStation = new("Energy/Power Station")
7033
8223
  FastFoodRestaurant = new("Fast Food Restaurant")
@@ -7036,7 +8226,7 @@ module PortfolioManager
7036
8226
  FitnessCenterHealthClubGym = new("Fitness Center/Health Club/Gym")
7037
8227
  FoodSales = new("Food Sales")
7038
8228
  FoodService = new("Food Service")
7039
- HospitalGeneralMedicalSurgical = new("Hospital (General Medical & Surgical)")
8229
+ HospitalGeneralMedical38Surgical = new("Hospital (General Medical &#38; Surgical)")
7040
8230
  Hotel = new("Hotel")
7041
8231
  IceCurlingRink = new("Ice/Curling Rink")
7042
8232
  IndoorArena = new("Indoor Arena")
@@ -7092,6 +8282,7 @@ module PortfolioManager
7092
8282
  SwimmingPool = new("Swimming Pool")
7093
8283
  TransportationTerminalStation = new("Transportation Terminal/Station")
7094
8284
  UrgentCareClinicOtherOutpatient = new("Urgent Care/Clinic/Other Outpatient")
8285
+ VehicleDealership = new("Vehicle Dealership")
7095
8286
  VeterinaryOffice = new("Veterinary Office")
7096
8287
  VocationalSchool = new("Vocational School")
7097
8288
  WastewaterTreatmentPlant = new("Wastewater Treatment Plant")
@@ -7403,6 +8594,21 @@ module PortfolioManager
7403
8594
  MillionGallonsPerDay = new("Million Gallons per Day")
7404
8595
  end
7405
8596
 
8597
+ # {}customUnitsType
8598
+ class CustomUnitsType < ::String
8599
+ Feet = new("Feet")
8600
+ GallonsUK = new("Gallons (UK)")
8601
+ GallonsUS = new("Gallons (US)")
8602
+ Kilogram = new("Kilogram")
8603
+ Meters = new("Meters")
8604
+ Other = new("Other")
8605
+ Pounds = new("Pounds")
8606
+ SquareFeet = new("Square Feet")
8607
+ SquareMeters = new("Square Meters")
8608
+ TonnesMetric = new("Tonnes (metric)")
8609
+ TonsShort = new("Tons (short)")
8610
+ end
8611
+
7406
8612
  # {}lengthUnitsType
7407
8613
  class LengthUnitsType < ::String
7408
8614
  Feet = new("Feet")
@@ -7414,11 +8620,6 @@ module PortfolioManager
7414
8620
  class DecimalTwoPrecisionOrEmptyString < ::String
7415
8621
  end
7416
8622
 
7417
- # {}emptyString
7418
- class EmptyString < ::String
7419
- C_ = new("")
7420
- end
7421
-
7422
8623
  # {}irrigationAreaUnitsType
7423
8624
  class IrrigationAreaUnitsType < ::String
7424
8625
  Acres = new("Acres")
@@ -7427,6 +8628,16 @@ module PortfolioManager
7427
8628
  SquareMeters = new("Square Meters")
7428
8629
  end
7429
8630
 
8631
+ # {}emptyString
8632
+ class EmptyString < ::String
8633
+ C_ = new("")
8634
+ end
8635
+
8636
+ # {}systemDeterminedString
8637
+ class SystemDeterminedString < ::String
8638
+ SystemDetermined = new("System Determined")
8639
+ end
8640
+
7430
8641
  # {}acceptRejectType
7431
8642
  class AcceptRejectType < ::String
7432
8643
  Accept = new("Accept")
@@ -7607,11 +8818,17 @@ module PortfolioManager
7607
8818
  Date = new("date")
7608
8819
  end
7609
8820
 
8821
+ # {}periodType
8822
+ class PeriodType < ::String
8823
+ BASELINE = new("BASELINE")
8824
+ CURRENT = new("CURRENT")
8825
+ end
8826
+
7610
8827
  # {}categoryType
7611
8828
  class CategoryType < ::String
7612
8829
  BehavioralOutreach = new("Behavioral/Outreach")
7613
8830
  FanSystemsStage4 = new("Fan Systems (Stage 4)")
7614
- HeatingCoolingPlantStage5 = new("Heating & Cooling Plant (Stage 5)")
8831
+ Heating38CoolingPlantStage5 = new("Heating &#38; Cooling Plant (Stage 5)")
7615
8832
  LightingStage2 = new("Lighting (Stage 2)")
7616
8833
  LoadReductionsStage3 = new("Load Reductions (Stage 3)")
7617
8834
  OtherTechnologiesStrategies = new("Other Technologies/Strategies")
@@ -7888,7 +9105,7 @@ module PortfolioManager
7888
9105
  end
7889
9106
 
7890
9107
  # {}optionalCost
7891
- # any of xs:decimal emptyString
9108
+ # any of emptyString xs:decimal
7892
9109
  class OptionalCost < ::String
7893
9110
  end
7894
9111
 
@@ -7898,7 +9115,7 @@ module PortfolioManager
7898
9115
  end
7899
9116
 
7900
9117
  # {}generationPlantType
7901
- # any of xs:integer emptyString
9118
+ # any of emptyString xs:integer
7902
9119
  class GenerationPlantType < ::String
7903
9120
  end
7904
9121
 
@@ -7924,18 +9141,13 @@ module PortfolioManager
7924
9141
  TenantPlugLoadElectricity = new("Tenant Plug Load/Electricity")
7925
9142
  end
7926
9143
 
7927
- # {}systemDeterminedString
7928
- class SystemDeterminedString < ::String
7929
- SystemDetermined = new("System Determined")
7930
- end
7931
-
7932
9144
  # {}baselineDateType
7933
- # any of xs:gYearMonth systemDeterminedString
9145
+ # any of systemDeterminedString xs:gYearMonth
7934
9146
  class BaselineDateType < ::String
7935
9147
  end
7936
9148
 
7937
9149
  # {}optionalWasteCost
7938
- # any of xs:decimal emptyString
9150
+ # any of emptyString xs:decimal
7939
9151
  class OptionalWasteCost < ::String
7940
9152
  end
7941
9153
 
@@ -8025,6 +9237,45 @@ module PortfolioManager
8025
9237
  YT = new("YT")
8026
9238
  end
8027
9239
 
9240
+ # {}reportingIntervalType
9241
+ class ReportingIntervalType < ::String
9242
+ MONTHLY = new("MONTHLY")
9243
+ QUARTERLY = new("QUARTERLY")
9244
+ YEARLY = new("YEARLY")
9245
+ end
9246
+
9247
+ # {}reportType
9248
+ class ReportType < ::String
9249
+ CUSTOM = new("CUSTOM")
9250
+ ENERGY_STAR = new("ENERGY_STAR")
9251
+ end
9252
+
9253
+ # {}reportStatusType
9254
+ class ReportStatusType < ::String
9255
+ FAILED = new("FAILED")
9256
+ GENERATED = new("GENERATED")
9257
+ GENERATED_WITH_ERRORS = new("GENERATED_WITH_ERRORS")
9258
+ INITIALIZED = new("INITIALIZED")
9259
+ IN_PROCESS = new("IN_PROCESS")
9260
+ READY_FOR_DOWNLOAD = new("READY_FOR_DOWNLOAD")
9261
+ SENT = new("SENT")
9262
+ SUBMITTED = new("SUBMITTED")
9263
+ end
9264
+
9265
+ # {}dataRequestStatusType
9266
+ class DataRequestStatusType < ::String
9267
+ ALL = new("ALL")
9268
+ CLOSED = new("CLOSED")
9269
+ OPEN = new("OPEN")
9270
+ end
9271
+
9272
+ # {}meterCategoryType
9273
+ class MeterCategoryType < ::String
9274
+ ENERGY = new("ENERGY")
9275
+ WASTE = new("WASTE")
9276
+ WATER = new("WATER")
9277
+ end
9278
+
8028
9279
  # {}accountInfo
8029
9280
  # @!attribute [rw] firstName
8030
9281
  # @return [SOAP::SOAPString]
@@ -8451,6 +9702,26 @@ module PortfolioManager
8451
9702
  # @return [PortfolioManager::Xml::UseDecimalType]
8452
9703
  # @!attribute [rw] commonEntrance
8453
9704
  # @return [PortfolioManager::Xml::UseYesNoType]
9705
+ # @!attribute [rw] numberOfCookingEquipmentUnits
9706
+ # @return [PortfolioManager::Xml::UseIntegerType]
9707
+ # @!attribute [rw] numberOfWarmingHeatingEquipmentUnits
9708
+ # @return [PortfolioManager::Xml::UseIntegerType]
9709
+ # @!attribute [rw] ceilingHeight
9710
+ # @return [PortfolioManager::Xml::CeilingHeightUnitsType]
9711
+ # @!attribute [rw] averageNumberOfVehiclesInInventory
9712
+ # @return [PortfolioManager::Xml::UseDecimalType]
9713
+ # @!attribute [rw] deliveryFacility
9714
+ # @return [PortfolioManager::Xml::UseYesNoType]
9715
+ # @!attribute [rw] numberOfLettersPackagesPerYear
9716
+ # @return [PortfolioManager::Xml::UseIntegerType]
9717
+ # @!attribute [rw] customUseDetail1
9718
+ # @return [PortfolioManager::Xml::CustomUseDetailsType]
9719
+ # @!attribute [rw] customUseDetail2
9720
+ # @return [PortfolioManager::Xml::CustomUseDetailsType]
9721
+ # @!attribute [rw] precisionControlsForTemperatureAndHumidity
9722
+ # @return [PortfolioManager::Xml::UseYesNoType]
9723
+ # @!attribute [rw] grossFloorAreaThatIsExhibitSpace
9724
+ # @return [PortfolioManager::Xml::OptionalFloorAreaType]
8454
9725
  # @!attribute [rw] links
8455
9726
  # @return [PortfolioManager::Xml::LinksType]
8456
9727
  class UseDetails
@@ -8551,9 +9822,19 @@ module PortfolioManager
8551
9822
  attr_accessor :clearHeight
8552
9823
  attr_accessor :numberOfSterilizationUnits
8553
9824
  attr_accessor :commonEntrance
9825
+ attr_accessor :numberOfCookingEquipmentUnits
9826
+ attr_accessor :numberOfWarmingHeatingEquipmentUnits
9827
+ attr_accessor :ceilingHeight
9828
+ attr_accessor :averageNumberOfVehiclesInInventory
9829
+ attr_accessor :deliveryFacility
9830
+ attr_accessor :numberOfLettersPackagesPerYear
9831
+ attr_accessor :customUseDetail1
9832
+ attr_accessor :customUseDetail2
9833
+ attr_accessor :precisionControlsForTemperatureAndHumidity
9834
+ attr_accessor :grossFloorAreaThatIsExhibitSpace
8554
9835
  attr_accessor :links
8555
9836
 
8556
- def initialize(amountOfLaundryProcessedAnnually = nil, averageEffluentBiologicalOxygenDemand = nil, averageInfluentBiologicalOxygenDemand = nil, averageNumberOfResidents = nil, completelyEnclosedFootage = nil, cookingFacilities = nil, coolingEquipmentRedundancy = nil, enclosedFloorArea = nil, enrollment = nil, exteriorEntranceToThePublic = nil, fixedFilmTrickleFiltrationProcess = nil, fullServiceSpaFloorArea = nil, areaOfAllWalkInRefrigerationUnits = nil, lengthOfAllOpenClosedRefrigerationUnits = nil, governmentSubsidizedHousing = nil, grantDollars = nil, gymCenterFloorArea = nil, gymnasiumFloorArea = nil, hasComputerLab = nil, hasDiningHall = nil, hasLaboratory = nil, hoursPerDayGuestsOnsite = nil, iceEvents = nil, isHighSchool = nil, isTertiaryCare = nil, itEnergyMeterConfiguration = nil, laundryFacility = nil, maximumNumberOfFloors = nil, maximumResidentCapacity = nil, licensedBedCapacity = nil, monthsInUse = nil, monthsMainIndoorIceRinkInUse = nil, numberOfBedrooms = nil, numberOfCashRegisters = nil, numberOfCommercialRefrigerationUnits = nil, numberOfCommercialWashingMachines = nil, numberOfComputers = nil, numberOfConcertShowEventsPerYear = nil, numberOfResidentialLivingUnitsLowRiseSetting = nil, numberOfFTEWorkers = nil, numberOfGuestMealsServedPerYear = nil, numberOfLaundryHookupsInAllUnits = nil, numberOfLaundryHookupsInCommonArea = nil, numberOfMriMachines = nil, numberOfOpenClosedRefrigerationUnits = nil, numberOfPeople = nil, numberOfResidentialLiftSystems = nil, numberOfResidentialLivingUnits = nil, numberOfResidentialWashingMachines = nil, numberOfRooms = nil, numberOfHotelRooms = nil, numberOfSpecialOtherEventsPerYear = nil, numberOfSportingEventsPerYear = nil, numberOfStaffedBeds = nil, numberOfSurgicalOperatingBeds = nil, numberOfWalkInRefrigerationUnits = nil, numberOfWeekdaysOpen = nil, numberOfWorkers = nil, numberOfIndoorIceRinks = nil, numberOfWeeklyIceResurfacingForAllRinks = nil, numberOfCurlingSheets = nil, nutrientRemoval = nil, onSiteLaundryFacility = nil, openFootage = nil, openOnWeekends = nil, ownedBy = nil, partiallyEnclosedFootage = nil, percentCooled = nil, percentHeated = nil, numberOfResidentialLivingUnitsMidRiseSetting = nil, percentOfGrossFloorAreaThatIsCommonSpaceOnly = nil, percentOfficeCooled = nil, percentOfficeHeated = nil, totalIceRinkSurfaceAreaForAllRinks = nil, plantDesignFlowRate = nil, poolLocation = nil, poolSize = nil, numberOfResidentialLivingUnitsHighRiseSetting = nil, residentPopulation = nil, schoolDistrict = nil, seatingCapacity = nil, singleStore = nil, totalGrossFloorArea = nil, estimatesApplied = nil, upsSystemRedundancy = nil, sizeOfElectronicScoreBoards = nil, spectatorSeatingCapacity = nil, supplementalHeating = nil, studentSeatingCapacity = nil, surgeryCenterFloorArea = nil, weeklyOperatingHours = nil, percentUsedForColdStorage = nil, grossFloorAreaUsedForFoodPreparation = nil, grossFloorAreaHotelConferenceSpace = nil, clearHeight = nil, numberOfSterilizationUnits = nil, commonEntrance = nil, links = nil)
9837
+ def initialize(amountOfLaundryProcessedAnnually = nil, averageEffluentBiologicalOxygenDemand = nil, averageInfluentBiologicalOxygenDemand = nil, averageNumberOfResidents = nil, completelyEnclosedFootage = nil, cookingFacilities = nil, coolingEquipmentRedundancy = nil, enclosedFloorArea = nil, enrollment = nil, exteriorEntranceToThePublic = nil, fixedFilmTrickleFiltrationProcess = nil, fullServiceSpaFloorArea = nil, areaOfAllWalkInRefrigerationUnits = nil, lengthOfAllOpenClosedRefrigerationUnits = nil, governmentSubsidizedHousing = nil, grantDollars = nil, gymCenterFloorArea = nil, gymnasiumFloorArea = nil, hasComputerLab = nil, hasDiningHall = nil, hasLaboratory = nil, hoursPerDayGuestsOnsite = nil, iceEvents = nil, isHighSchool = nil, isTertiaryCare = nil, itEnergyMeterConfiguration = nil, laundryFacility = nil, maximumNumberOfFloors = nil, maximumResidentCapacity = nil, licensedBedCapacity = nil, monthsInUse = nil, monthsMainIndoorIceRinkInUse = nil, numberOfBedrooms = nil, numberOfCashRegisters = nil, numberOfCommercialRefrigerationUnits = nil, numberOfCommercialWashingMachines = nil, numberOfComputers = nil, numberOfConcertShowEventsPerYear = nil, numberOfResidentialLivingUnitsLowRiseSetting = nil, numberOfFTEWorkers = nil, numberOfGuestMealsServedPerYear = nil, numberOfLaundryHookupsInAllUnits = nil, numberOfLaundryHookupsInCommonArea = nil, numberOfMriMachines = nil, numberOfOpenClosedRefrigerationUnits = nil, numberOfPeople = nil, numberOfResidentialLiftSystems = nil, numberOfResidentialLivingUnits = nil, numberOfResidentialWashingMachines = nil, numberOfRooms = nil, numberOfHotelRooms = nil, numberOfSpecialOtherEventsPerYear = nil, numberOfSportingEventsPerYear = nil, numberOfStaffedBeds = nil, numberOfSurgicalOperatingBeds = nil, numberOfWalkInRefrigerationUnits = nil, numberOfWeekdaysOpen = nil, numberOfWorkers = nil, numberOfIndoorIceRinks = nil, numberOfWeeklyIceResurfacingForAllRinks = nil, numberOfCurlingSheets = nil, nutrientRemoval = nil, onSiteLaundryFacility = nil, openFootage = nil, openOnWeekends = nil, ownedBy = nil, partiallyEnclosedFootage = nil, percentCooled = nil, percentHeated = nil, numberOfResidentialLivingUnitsMidRiseSetting = nil, percentOfGrossFloorAreaThatIsCommonSpaceOnly = nil, percentOfficeCooled = nil, percentOfficeHeated = nil, totalIceRinkSurfaceAreaForAllRinks = nil, plantDesignFlowRate = nil, poolLocation = nil, poolSize = nil, numberOfResidentialLivingUnitsHighRiseSetting = nil, residentPopulation = nil, schoolDistrict = nil, seatingCapacity = nil, singleStore = nil, totalGrossFloorArea = nil, estimatesApplied = nil, upsSystemRedundancy = nil, sizeOfElectronicScoreBoards = nil, spectatorSeatingCapacity = nil, supplementalHeating = nil, studentSeatingCapacity = nil, surgeryCenterFloorArea = nil, weeklyOperatingHours = nil, percentUsedForColdStorage = nil, grossFloorAreaUsedForFoodPreparation = nil, grossFloorAreaHotelConferenceSpace = nil, clearHeight = nil, numberOfSterilizationUnits = nil, commonEntrance = nil, numberOfCookingEquipmentUnits = nil, numberOfWarmingHeatingEquipmentUnits = nil, ceilingHeight = nil, averageNumberOfVehiclesInInventory = nil, deliveryFacility = nil, numberOfLettersPackagesPerYear = nil, customUseDetail1 = nil, customUseDetail2 = nil, precisionControlsForTemperatureAndHumidity = nil, grossFloorAreaThatIsExhibitSpace = nil, links = nil)
8557
9838
  @amountOfLaundryProcessedAnnually = amountOfLaundryProcessedAnnually
8558
9839
  @averageEffluentBiologicalOxygenDemand = averageEffluentBiologicalOxygenDemand
8559
9840
  @averageInfluentBiologicalOxygenDemand = averageInfluentBiologicalOxygenDemand
@@ -8651,6 +9932,16 @@ module PortfolioManager
8651
9932
  @clearHeight = clearHeight
8652
9933
  @numberOfSterilizationUnits = numberOfSterilizationUnits
8653
9934
  @commonEntrance = commonEntrance
9935
+ @numberOfCookingEquipmentUnits = numberOfCookingEquipmentUnits
9936
+ @numberOfWarmingHeatingEquipmentUnits = numberOfWarmingHeatingEquipmentUnits
9937
+ @ceilingHeight = ceilingHeight
9938
+ @averageNumberOfVehiclesInInventory = averageNumberOfVehiclesInInventory
9939
+ @deliveryFacility = deliveryFacility
9940
+ @numberOfLettersPackagesPerYear = numberOfLettersPackagesPerYear
9941
+ @customUseDetail1 = customUseDetail1
9942
+ @customUseDetail2 = customUseDetail2
9943
+ @precisionControlsForTemperatureAndHumidity = precisionControlsForTemperatureAndHumidity
9944
+ @grossFloorAreaThatIsExhibitSpace = grossFloorAreaThatIsExhibitSpace
8654
9945
  @links = links
8655
9946
  end
8656
9947
  end
@@ -8727,8 +10018,11 @@ module PortfolioManager
8727
10018
  # @return [SOAP::SOAPString]
8728
10019
  # @!attribute [rw] xmlattr_description
8729
10020
  # @return [SOAP::SOAPString]
10021
+ # @!attribute [rw] xmlattr_group
10022
+ # @return [SOAP::SOAPString]
8730
10023
  class AdditionalIdentifierType
8731
10024
  AttrDescription = XSD::QName.new(nil, "description")
10025
+ AttrGroup = XSD::QName.new(nil, "group")
8732
10026
  AttrId = XSD::QName.new(nil, "id")
8733
10027
  AttrName = XSD::QName.new(nil, "name")
8734
10028
  AttrStandardApproved = XSD::QName.new(nil, "standardApproved")
@@ -8769,6 +10063,14 @@ module PortfolioManager
8769
10063
  __xmlattr[AttrDescription] = value
8770
10064
  end
8771
10065
 
10066
+ def xmlattr_group
10067
+ __xmlattr[AttrGroup]
10068
+ end
10069
+
10070
+ def xmlattr_group=(value)
10071
+ __xmlattr[AttrGroup] = value
10072
+ end
10073
+
8772
10074
  def initialize
8773
10075
  @__xmlattr = {}
8774
10076
  end
@@ -9179,6 +10481,91 @@ module PortfolioManager
9179
10481
  end
9180
10482
  end
9181
10483
 
10484
+ # {}customMetric
10485
+ # @!attribute [rw] name
10486
+ # @return [SOAP::SOAPString]
10487
+ # @!attribute [rw] numeratorMetricId
10488
+ # @return [SOAP::SOAPLong]
10489
+ # @!attribute [rw] denominatorDetailTypeId
10490
+ # @return [SOAP::SOAPLong]
10491
+ # @!attribute [rw] xmlattr_id
10492
+ # @return [SOAP::SOAPLong]
10493
+ # @!attribute [rw] xmlattr_unitOfMeasure
10494
+ # @return [SOAP::SOAPString]
10495
+ class CustomMetric
10496
+ AttrId = XSD::QName.new(nil, "id")
10497
+ AttrUnitOfMeasure = XSD::QName.new(nil, "unitOfMeasure")
10498
+
10499
+ attr_accessor :name
10500
+ attr_accessor :numeratorMetricId
10501
+ attr_accessor :denominatorDetailTypeId
10502
+
10503
+ def __xmlattr
10504
+ @__xmlattr ||= {}
10505
+ end
10506
+
10507
+ def xmlattr_id
10508
+ __xmlattr[AttrId]
10509
+ end
10510
+
10511
+ def xmlattr_id=(value)
10512
+ __xmlattr[AttrId] = value
10513
+ end
10514
+
10515
+ def xmlattr_unitOfMeasure
10516
+ __xmlattr[AttrUnitOfMeasure]
10517
+ end
10518
+
10519
+ def xmlattr_unitOfMeasure=(value)
10520
+ __xmlattr[AttrUnitOfMeasure] = value
10521
+ end
10522
+
10523
+ def initialize(name = nil, numeratorMetricId = nil, denominatorDetailTypeId = nil)
10524
+ @name = name
10525
+ @numeratorMetricId = numeratorMetricId
10526
+ @denominatorDetailTypeId = denominatorDetailTypeId
10527
+ @__xmlattr = {}
10528
+ end
10529
+ end
10530
+
10531
+ # {}detailsTypes
10532
+ class DetailsTypes < ::Array
10533
+ end
10534
+
10535
+ # {}detailType
10536
+ # @!attribute [rw] xmlattr_id
10537
+ # @return [SOAP::SOAPLong]
10538
+ # @!attribute [rw] xmlattr_name
10539
+ # @return [SOAP::SOAPString]
10540
+ class DetailType
10541
+ AttrId = XSD::QName.new(nil, "id")
10542
+ AttrName = XSD::QName.new(nil, "name")
10543
+
10544
+ def __xmlattr
10545
+ @__xmlattr ||= {}
10546
+ end
10547
+
10548
+ def xmlattr_id
10549
+ __xmlattr[AttrId]
10550
+ end
10551
+
10552
+ def xmlattr_id=(value)
10553
+ __xmlattr[AttrId] = value
10554
+ end
10555
+
10556
+ def xmlattr_name
10557
+ __xmlattr[AttrName]
10558
+ end
10559
+
10560
+ def xmlattr_name=(value)
10561
+ __xmlattr[AttrName] = value
10562
+ end
10563
+
10564
+ def initialize
10565
+ @__xmlattr = {}
10566
+ end
10567
+ end
10568
+
9182
10569
  # {}individualMeter
9183
10570
  # @!attribute [rw] id
9184
10571
  # @return [SOAP::SOAPLong]
@@ -9217,5 +10604,200 @@ module PortfolioManager
9217
10604
  @audit = audit
9218
10605
  end
9219
10606
  end
10607
+
10608
+ # {}templateType
10609
+ class TemplateType < ::String
10610
+ CUSTOM = new("CUSTOM")
10611
+ ENERGY_STAR = new("ENERGY_STAR")
10612
+ end
10613
+
10614
+ # {}responseStatus
10615
+ # @!attribute [rw] status
10616
+ # @return [PortfolioManager::Xml::ReportStatusType]
10617
+ # @!attribute [rw] description
10618
+ # @return [SOAP::SOAPString]
10619
+ # @!attribute [rw] generationStartDate
10620
+ # @return [SOAP::SOAPDateTime]
10621
+ # @!attribute [rw] generationEndDate
10622
+ # @return [SOAP::SOAPDateTime]
10623
+ # @!attribute [rw] submittedDate
10624
+ # @return [SOAP::SOAPDateTime]
10625
+ # @!attribute [rw] sentDate
10626
+ # @return [SOAP::SOAPDateTime]
10627
+ # @!attribute [rw] errors
10628
+ # @return [PortfolioManager::Xml::ResponseStatus::Errors]
10629
+ class ResponseStatus < ReportStatusDef
10630
+
10631
+ # inner class for member: errors
10632
+ # {}errors
10633
+ # @!attribute [rw] links
10634
+ # @return [PortfolioManager::Xml::LinksType]
10635
+ class Errors
10636
+ attr_accessor :links
10637
+
10638
+ def initialize(links = nil)
10639
+ @links = links
10640
+ end
10641
+ end
10642
+
10643
+ attr_accessor :status
10644
+ attr_accessor :description
10645
+ attr_accessor :generationStartDate
10646
+ attr_accessor :generationEndDate
10647
+ attr_accessor :submittedDate
10648
+ attr_accessor :sentDate
10649
+ attr_accessor :errors
10650
+
10651
+ def initialize(status = nil, description = nil, generationStartDate = nil, generationEndDate = nil, submittedDate = nil, sentDate = nil, errors = nil)
10652
+ @status = status
10653
+ @description = description
10654
+ @generationStartDate = generationStartDate
10655
+ @generationEndDate = generationEndDate
10656
+ @submittedDate = submittedDate
10657
+ @sentDate = sentDate
10658
+ @errors = errors
10659
+ end
10660
+ end
10661
+
10662
+ # {}reportError
10663
+ # @!attribute [rw] reportId
10664
+ # @return [SOAP::SOAPLong]
10665
+ # @!attribute [rw] templateName
10666
+ # @return [SOAP::SOAPString]
10667
+ # @!attribute [rw] dateGenerated
10668
+ # @return [SOAP::SOAPDateTime]
10669
+ # @!attribute [rw] numberOfProperties
10670
+ # @return [SOAP::SOAPInteger]
10671
+ # @!attribute [rw] missingMetrics
10672
+ # @return [PortfolioManager::Xml::ReportError::MissingMetrics]
10673
+ class ReportError
10674
+
10675
+ # inner class for member: missingMetrics
10676
+ # {}missingMetrics
10677
+ class MissingMetrics < ::Array
10678
+
10679
+ # {}propertyMissingMetric
10680
+ # @!attribute [rw] yearEndingDate
10681
+ # @return [SOAP::SOAPDate]
10682
+ # @!attribute [rw] metric
10683
+ # @return [PortfolioManager::Xml::ReportError::MissingMetrics::PropertyMissingMetric::Metric]
10684
+ # @!attribute [rw] xmlattr_propertyId
10685
+ # @return [SOAP::SOAPLong]
10686
+ # @!attribute [rw] xmlattr_propertyName
10687
+ # @return [SOAP::SOAPString]
10688
+ class PropertyMissingMetric
10689
+ AttrPropertyId = XSD::QName.new(nil, "propertyId")
10690
+ AttrPropertyName = XSD::QName.new(nil, "propertyName")
10691
+
10692
+ # inner class for member: metric
10693
+ # {}metric
10694
+ # @!attribute [rw] error
10695
+ # @return [SOAP::SOAPString]
10696
+ # @!attribute [rw] xmlattr_name
10697
+ # @return [SOAP::SOAPString]
10698
+ # @!attribute [rw] xmlattr_id
10699
+ # @return [SOAP::SOAPLong]
10700
+ class Metric
10701
+ AttrId = XSD::QName.new(nil, "id")
10702
+ AttrName = XSD::QName.new(nil, "name")
10703
+
10704
+ attr_accessor :error
10705
+
10706
+ def __xmlattr
10707
+ @__xmlattr ||= {}
10708
+ end
10709
+
10710
+ def xmlattr_name
10711
+ __xmlattr[AttrName]
10712
+ end
10713
+
10714
+ def xmlattr_name=(value)
10715
+ __xmlattr[AttrName] = value
10716
+ end
10717
+
10718
+ def xmlattr_id
10719
+ __xmlattr[AttrId]
10720
+ end
10721
+
10722
+ def xmlattr_id=(value)
10723
+ __xmlattr[AttrId] = value
10724
+ end
10725
+
10726
+ def initialize(error = nil)
10727
+ @error = error
10728
+ @__xmlattr = {}
10729
+ end
10730
+ end
10731
+
10732
+ attr_accessor :yearEndingDate
10733
+ attr_accessor :metric
10734
+
10735
+ def __xmlattr
10736
+ @__xmlattr ||= {}
10737
+ end
10738
+
10739
+ def xmlattr_propertyId
10740
+ __xmlattr[AttrPropertyId]
10741
+ end
10742
+
10743
+ def xmlattr_propertyId=(value)
10744
+ __xmlattr[AttrPropertyId] = value
10745
+ end
10746
+
10747
+ def xmlattr_propertyName
10748
+ __xmlattr[AttrPropertyName]
10749
+ end
10750
+
10751
+ def xmlattr_propertyName=(value)
10752
+ __xmlattr[AttrPropertyName] = value
10753
+ end
10754
+
10755
+ def initialize(yearEndingDate = nil, metric = [])
10756
+ @yearEndingDate = yearEndingDate
10757
+ @metric = metric
10758
+ @__xmlattr = {}
10759
+ end
10760
+ end
10761
+ end
10762
+
10763
+ attr_accessor :reportId
10764
+ attr_accessor :templateName
10765
+ attr_accessor :dateGenerated
10766
+ attr_accessor :numberOfProperties
10767
+ attr_accessor :missingMetrics
10768
+
10769
+ def initialize(reportId = nil, templateName = nil, dateGenerated = nil, numberOfProperties = nil, missingMetrics = nil)
10770
+ @reportId = reportId
10771
+ @templateName = templateName
10772
+ @dateGenerated = dateGenerated
10773
+ @numberOfProperties = numberOfProperties
10774
+ @missingMetrics = missingMetrics
10775
+ end
10776
+ end
10777
+
10778
+ # {}sendDataResponse
10779
+ # @!attribute [rw] additionalEmailAddresses
10780
+ # @return [PortfolioManager::Xml::SendDataResponse::AdditionalEmailAddresses]
10781
+ # @!attribute [rw] fileFormat
10782
+ # @return [SOAP::SOAPString]
10783
+ # @!attribute [rw] submitWithErrors
10784
+ # @return [SOAP::SOAPBoolean]
10785
+ class SendDataResponse
10786
+
10787
+ # inner class for member: additionalEmailAddresses
10788
+ # {}additionalEmailAddresses
10789
+ class AdditionalEmailAddresses < ::Array
10790
+ end
10791
+
10792
+ attr_accessor :additionalEmailAddresses
10793
+ attr_accessor :fileFormat
10794
+ attr_accessor :submitWithErrors
10795
+
10796
+ def initialize(additionalEmailAddresses = nil, fileFormat = nil, submitWithErrors = nil)
10797
+ @additionalEmailAddresses = additionalEmailAddresses
10798
+ @fileFormat = fileFormat
10799
+ @submitWithErrors = submitWithErrors
10800
+ end
10801
+ end
9220
10802
  end
9221
10803
  end