google-apis-mybusinesslodging_v1 0.3.0 → 0.7.0
Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 97849471b17a33785514e2a651989a8f2551713a1ce639fd4977beb1841b2e48
|
4
|
+
data.tar.gz: 316c6b905b628c494e2204fe94be993bc72736a15e0fb875d507adff74283366
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c5e743df2f50a5d5757cbd790d6e8c8d5281f5f6096d5e8cb87fee143a56558b4554dffe0af8fb74aadba3a73ef9390a6fa6869a38930bc6479a1dbaec014961
|
7
|
+
data.tar.gz: dd1cd470756087bbaddd1e3e32a5c84c85328b894536a2d1213c05d1c1d2faf2f7af97aeb3e663aef76d02dda82e4a8107d02cba7fa87f9c182ed35c1fcb6fd7
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Release history for google-apis-mybusinesslodging_v1
|
2
2
|
|
3
|
+
### v0.7.0 (2021-12-14)
|
4
|
+
|
5
|
+
* Unspecified changes
|
6
|
+
|
7
|
+
### v0.6.0 (2021-10-21)
|
8
|
+
|
9
|
+
* Unspecified changes
|
10
|
+
|
11
|
+
### v0.5.0 (2021-09-09)
|
12
|
+
|
13
|
+
* Regenerated from discovery document revision 20210908
|
14
|
+
|
15
|
+
### v0.4.0 (2021-06-29)
|
16
|
+
|
17
|
+
* Regenerated using generator version 0.4.0
|
18
|
+
|
3
19
|
### v0.3.0 (2021-06-24)
|
4
20
|
|
5
21
|
* Regenerated using generator version 0.3.0
|
data/OVERVIEW.md
CHANGED
@@ -51,7 +51,7 @@ require "google/apis/mybusinesslodging_v1"
|
|
51
51
|
client = Google::Apis::MybusinesslodgingV1::MyBusinessLodgingService.new
|
52
52
|
|
53
53
|
# Authenticate calls
|
54
|
-
client.
|
54
|
+
client.authorization = # ... use the googleauth gem to create credentials
|
55
55
|
```
|
56
56
|
|
57
57
|
See the class reference docs for information on the methods you can call from a client.
|
@@ -60,8 +60,8 @@ See the class reference docs for information on the methods you can call from a
|
|
60
60
|
|
61
61
|
More detailed descriptions of the Google simple REST clients are available in two documents.
|
62
62
|
|
63
|
-
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
64
|
-
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/
|
63
|
+
* The [Usage Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/usage-guide.md) discusses how to make API calls, how to use the provided data structures, and how to work the various features of the client library, including media upload and download, error handling, retries, pagination, and logging.
|
64
|
+
* The [Auth Guide](https://github.com/googleapis/google-api-ruby-client/blob/main/docs/auth-guide.md) discusses authentication in the client libraries, including API keys, OAuth 2.0, service accounts, and environment variables.
|
65
65
|
|
66
66
|
(Note: the above documents are written for the simple REST clients in general, and their examples may not reflect the Mybusinesslodging service in particular.)
|
67
67
|
|
@@ -508,6 +508,174 @@ module Google
|
|
508
508
|
end
|
509
509
|
end
|
510
510
|
|
511
|
+
# An eco certificate awarded to the hotel.
|
512
|
+
class EcoCertification
|
513
|
+
include Google::Apis::Core::Hashable
|
514
|
+
|
515
|
+
# Whether the eco certificate was awarded or not.
|
516
|
+
# Corresponds to the JSON property `awarded`
|
517
|
+
# @return [Boolean]
|
518
|
+
attr_accessor :awarded
|
519
|
+
alias_method :awarded?, :awarded
|
520
|
+
|
521
|
+
# Awarded exception.
|
522
|
+
# Corresponds to the JSON property `awardedException`
|
523
|
+
# @return [String]
|
524
|
+
attr_accessor :awarded_exception
|
525
|
+
|
526
|
+
# Required. The eco certificate.
|
527
|
+
# Corresponds to the JSON property `ecoCertificate`
|
528
|
+
# @return [String]
|
529
|
+
attr_accessor :eco_certificate
|
530
|
+
|
531
|
+
def initialize(**args)
|
532
|
+
update!(**args)
|
533
|
+
end
|
534
|
+
|
535
|
+
# Update properties of this object
|
536
|
+
def update!(**args)
|
537
|
+
@awarded = args[:awarded] if args.key?(:awarded)
|
538
|
+
@awarded_exception = args[:awarded_exception] if args.key?(:awarded_exception)
|
539
|
+
@eco_certificate = args[:eco_certificate] if args.key?(:eco_certificate)
|
540
|
+
end
|
541
|
+
end
|
542
|
+
|
543
|
+
# Energy efficiency practices implemented at the hotel.
|
544
|
+
class EnergyEfficiency
|
545
|
+
include Google::Apis::Core::Hashable
|
546
|
+
|
547
|
+
# Carbon free energy sources. Property sources carbon-free electricity via at
|
548
|
+
# least one of the following methods: on-site clean energy generation, power
|
549
|
+
# purchase agreement(s) with clean energy generators, green power provided by
|
550
|
+
# electricity supplier, or purchases of Energy Attribute Certificates (such as
|
551
|
+
# Renewable Energy Certificates or Guarantees of Origin).
|
552
|
+
# Corresponds to the JSON property `carbonFreeEnergySources`
|
553
|
+
# @return [Boolean]
|
554
|
+
attr_accessor :carbon_free_energy_sources
|
555
|
+
alias_method :carbon_free_energy_sources?, :carbon_free_energy_sources
|
556
|
+
|
557
|
+
# Carbon free energy sources exception.
|
558
|
+
# Corresponds to the JSON property `carbonFreeEnergySourcesException`
|
559
|
+
# @return [String]
|
560
|
+
attr_accessor :carbon_free_energy_sources_exception
|
561
|
+
|
562
|
+
# Energy conservation program. The property tracks corporate-level Scope 1 and 2
|
563
|
+
# GHG emissions, and Scope 3 emissions if available. The property has a
|
564
|
+
# commitment to implement initiatives that reduce GHG emissions year over year.
|
565
|
+
# The property has shown an absolute reduction in emissions for at least 2 years.
|
566
|
+
# Emissions are either verfied by a third-party and/or published in external
|
567
|
+
# communications.
|
568
|
+
# Corresponds to the JSON property `energyConservationProgram`
|
569
|
+
# @return [Boolean]
|
570
|
+
attr_accessor :energy_conservation_program
|
571
|
+
alias_method :energy_conservation_program?, :energy_conservation_program
|
572
|
+
|
573
|
+
# Energy conservation program exception.
|
574
|
+
# Corresponds to the JSON property `energyConservationProgramException`
|
575
|
+
# @return [String]
|
576
|
+
attr_accessor :energy_conservation_program_exception
|
577
|
+
|
578
|
+
# Energy efficient heating and cooling systems. The property doesn't use
|
579
|
+
# chlorofluorocarbon (CFC)-based refrigerants in heating, ventilating, and air-
|
580
|
+
# conditioning systems unless a third-party audit shows it's not economically
|
581
|
+
# feasible. The CFC-based refrigerants which are used should have a Global
|
582
|
+
# Warming Potential (GWP) ≤ 10. The property uses occupancy sensors on HVAC
|
583
|
+
# systems in back-of-house spaces, meeting rooms, and other low-traffic areas.
|
584
|
+
# Corresponds to the JSON property `energyEfficientHeatingAndCoolingSystems`
|
585
|
+
# @return [Boolean]
|
586
|
+
attr_accessor :energy_efficient_heating_and_cooling_systems
|
587
|
+
alias_method :energy_efficient_heating_and_cooling_systems?, :energy_efficient_heating_and_cooling_systems
|
588
|
+
|
589
|
+
# Energy efficient heating and cooling systems exception.
|
590
|
+
# Corresponds to the JSON property `energyEfficientHeatingAndCoolingSystemsException`
|
591
|
+
# @return [String]
|
592
|
+
attr_accessor :energy_efficient_heating_and_cooling_systems_exception
|
593
|
+
|
594
|
+
# Energy efficient lighting. At least 75% of the property's lighting is energy
|
595
|
+
# efficient, using lighting that is more than 45 lumens per watt – typically LED
|
596
|
+
# or CFL lightbulbs.
|
597
|
+
# Corresponds to the JSON property `energyEfficientLighting`
|
598
|
+
# @return [Boolean]
|
599
|
+
attr_accessor :energy_efficient_lighting
|
600
|
+
alias_method :energy_efficient_lighting?, :energy_efficient_lighting
|
601
|
+
|
602
|
+
# Energy efficient lighting exception.
|
603
|
+
# Corresponds to the JSON property `energyEfficientLightingException`
|
604
|
+
# @return [String]
|
605
|
+
attr_accessor :energy_efficient_lighting_exception
|
606
|
+
|
607
|
+
# Energy saving thermostats. The property installed energy-saving thermostats
|
608
|
+
# throughout the building to conserve energy when rooms or areas are not in use.
|
609
|
+
# Energy-saving thermostats are devices that control heating/cooling in the
|
610
|
+
# building by learning temperature preferences and automatically adjusting to
|
611
|
+
# energy-saving temperatures as the default. The thermostats are automatically
|
612
|
+
# set to a temperature between 68-78 degrees F (20-26 °C), depending on
|
613
|
+
# seasonality. In the winter, set the thermostat to 68°F (20°C) when the room is
|
614
|
+
# occupied, lowering room temperature when unoccupied. In the summer, set the
|
615
|
+
# thermostat to 78°F (26°C) when the room is occupied.
|
616
|
+
# Corresponds to the JSON property `energySavingThermostats`
|
617
|
+
# @return [Boolean]
|
618
|
+
attr_accessor :energy_saving_thermostats
|
619
|
+
alias_method :energy_saving_thermostats?, :energy_saving_thermostats
|
620
|
+
|
621
|
+
# Energy saving thermostats exception.
|
622
|
+
# Corresponds to the JSON property `energySavingThermostatsException`
|
623
|
+
# @return [String]
|
624
|
+
attr_accessor :energy_saving_thermostats_exception
|
625
|
+
|
626
|
+
# Output only. Green building design. True if BREEAM-* or LEED-* certified.
|
627
|
+
# Corresponds to the JSON property `greenBuildingDesign`
|
628
|
+
# @return [Boolean]
|
629
|
+
attr_accessor :green_building_design
|
630
|
+
alias_method :green_building_design?, :green_building_design
|
631
|
+
|
632
|
+
# Output only. Green building design exception.
|
633
|
+
# Corresponds to the JSON property `greenBuildingDesignException`
|
634
|
+
# @return [String]
|
635
|
+
attr_accessor :green_building_design_exception
|
636
|
+
|
637
|
+
# Independent organization audits energy use. The property conducts an energy
|
638
|
+
# audit at least every 5 years, the results of which are either verified by a
|
639
|
+
# third-party and/or published in external communications. An energy audit is a
|
640
|
+
# detailed assessment of the facility which provides recommendations to existing
|
641
|
+
# operations and procedures to improve energy efficiency, available incentives
|
642
|
+
# or rebates,and opportunities for improvements through renovations or upgrades.
|
643
|
+
# Examples of organizations that conduct credible third party audits include:
|
644
|
+
# Engie Impact, DNV GL (EU), Dexma, and local utility providers (they often
|
645
|
+
# provide energy and water audits).
|
646
|
+
# Corresponds to the JSON property `independentOrganizationAuditsEnergyUse`
|
647
|
+
# @return [Boolean]
|
648
|
+
attr_accessor :independent_organization_audits_energy_use
|
649
|
+
alias_method :independent_organization_audits_energy_use?, :independent_organization_audits_energy_use
|
650
|
+
|
651
|
+
# Independent organization audits energy use exception.
|
652
|
+
# Corresponds to the JSON property `independentOrganizationAuditsEnergyUseException`
|
653
|
+
# @return [String]
|
654
|
+
attr_accessor :independent_organization_audits_energy_use_exception
|
655
|
+
|
656
|
+
def initialize(**args)
|
657
|
+
update!(**args)
|
658
|
+
end
|
659
|
+
|
660
|
+
# Update properties of this object
|
661
|
+
def update!(**args)
|
662
|
+
@carbon_free_energy_sources = args[:carbon_free_energy_sources] if args.key?(:carbon_free_energy_sources)
|
663
|
+
@carbon_free_energy_sources_exception = args[:carbon_free_energy_sources_exception] if args.key?(:carbon_free_energy_sources_exception)
|
664
|
+
@energy_conservation_program = args[:energy_conservation_program] if args.key?(:energy_conservation_program)
|
665
|
+
@energy_conservation_program_exception = args[:energy_conservation_program_exception] if args.key?(:energy_conservation_program_exception)
|
666
|
+
@energy_efficient_heating_and_cooling_systems = args[:energy_efficient_heating_and_cooling_systems] if args.key?(:energy_efficient_heating_and_cooling_systems)
|
667
|
+
@energy_efficient_heating_and_cooling_systems_exception = args[:energy_efficient_heating_and_cooling_systems_exception] if args.key?(:energy_efficient_heating_and_cooling_systems_exception)
|
668
|
+
@energy_efficient_lighting = args[:energy_efficient_lighting] if args.key?(:energy_efficient_lighting)
|
669
|
+
@energy_efficient_lighting_exception = args[:energy_efficient_lighting_exception] if args.key?(:energy_efficient_lighting_exception)
|
670
|
+
@energy_saving_thermostats = args[:energy_saving_thermostats] if args.key?(:energy_saving_thermostats)
|
671
|
+
@energy_saving_thermostats_exception = args[:energy_saving_thermostats_exception] if args.key?(:energy_saving_thermostats_exception)
|
672
|
+
@green_building_design = args[:green_building_design] if args.key?(:green_building_design)
|
673
|
+
@green_building_design_exception = args[:green_building_design_exception] if args.key?(:green_building_design_exception)
|
674
|
+
@independent_organization_audits_energy_use = args[:independent_organization_audits_energy_use] if args.key?(:independent_organization_audits_energy_use)
|
675
|
+
@independent_organization_audits_energy_use_exception = args[:independent_organization_audits_energy_use_exception] if args.key?(:independent_organization_audits_energy_use_exception)
|
676
|
+
end
|
677
|
+
end
|
678
|
+
|
511
679
|
# Enhanced cleaning measures implemented by the hotel during COVID-19.
|
512
680
|
class EnhancedCleaning
|
513
681
|
include Google::Apis::Core::Hashable
|
@@ -2415,6 +2583,11 @@ module Google
|
|
2415
2583
|
# @return [Google::Apis::MybusinesslodgingV1::GuestUnitFeatures]
|
2416
2584
|
attr_accessor :some_units
|
2417
2585
|
|
2586
|
+
# Sustainability practices implemented at the hotel.
|
2587
|
+
# Corresponds to the JSON property `sustainability`
|
2588
|
+
# @return [Google::Apis::MybusinesslodgingV1::Sustainability]
|
2589
|
+
attr_accessor :sustainability
|
2590
|
+
|
2418
2591
|
# Vehicles or vehicular services facilitated or owned by the property.
|
2419
2592
|
# Corresponds to the JSON property `transportation`
|
2420
2593
|
# @return [Google::Apis::MybusinesslodgingV1::Transportation]
|
@@ -2452,6 +2625,7 @@ module Google
|
|
2452
2625
|
@property = args[:property] if args.key?(:property)
|
2453
2626
|
@services = args[:services] if args.key?(:services)
|
2454
2627
|
@some_units = args[:some_units] if args.key?(:some_units)
|
2628
|
+
@sustainability = args[:sustainability] if args.key?(:sustainability)
|
2455
2629
|
@transportation = args[:transportation] if args.key?(:transportation)
|
2456
2630
|
@wellness = args[:wellness] if args.key?(:wellness)
|
2457
2631
|
end
|
@@ -3613,6 +3787,229 @@ module Google
|
|
3613
3787
|
end
|
3614
3788
|
end
|
3615
3789
|
|
3790
|
+
# Sustainability practices implemented at the hotel.
|
3791
|
+
class Sustainability
|
3792
|
+
include Google::Apis::Core::Hashable
|
3793
|
+
|
3794
|
+
# Energy efficiency practices implemented at the hotel.
|
3795
|
+
# Corresponds to the JSON property `energyEfficiency`
|
3796
|
+
# @return [Google::Apis::MybusinesslodgingV1::EnergyEfficiency]
|
3797
|
+
attr_accessor :energy_efficiency
|
3798
|
+
|
3799
|
+
# Sustainability certifications the hotel has been awarded.
|
3800
|
+
# Corresponds to the JSON property `sustainabilityCertifications`
|
3801
|
+
# @return [Google::Apis::MybusinesslodgingV1::SustainabilityCertifications]
|
3802
|
+
attr_accessor :sustainability_certifications
|
3803
|
+
|
3804
|
+
# Sustainable sourcing practices implemented at the hotel.
|
3805
|
+
# Corresponds to the JSON property `sustainableSourcing`
|
3806
|
+
# @return [Google::Apis::MybusinesslodgingV1::SustainableSourcing]
|
3807
|
+
attr_accessor :sustainable_sourcing
|
3808
|
+
|
3809
|
+
# Waste reduction practices implemented at the hotel.
|
3810
|
+
# Corresponds to the JSON property `wasteReduction`
|
3811
|
+
# @return [Google::Apis::MybusinesslodgingV1::WasteReduction]
|
3812
|
+
attr_accessor :waste_reduction
|
3813
|
+
|
3814
|
+
# Water conservation practices implemented at the hotel.
|
3815
|
+
# Corresponds to the JSON property `waterConservation`
|
3816
|
+
# @return [Google::Apis::MybusinesslodgingV1::WaterConservation]
|
3817
|
+
attr_accessor :water_conservation
|
3818
|
+
|
3819
|
+
def initialize(**args)
|
3820
|
+
update!(**args)
|
3821
|
+
end
|
3822
|
+
|
3823
|
+
# Update properties of this object
|
3824
|
+
def update!(**args)
|
3825
|
+
@energy_efficiency = args[:energy_efficiency] if args.key?(:energy_efficiency)
|
3826
|
+
@sustainability_certifications = args[:sustainability_certifications] if args.key?(:sustainability_certifications)
|
3827
|
+
@sustainable_sourcing = args[:sustainable_sourcing] if args.key?(:sustainable_sourcing)
|
3828
|
+
@waste_reduction = args[:waste_reduction] if args.key?(:waste_reduction)
|
3829
|
+
@water_conservation = args[:water_conservation] if args.key?(:water_conservation)
|
3830
|
+
end
|
3831
|
+
end
|
3832
|
+
|
3833
|
+
# Sustainability certifications the hotel has been awarded.
|
3834
|
+
class SustainabilityCertifications
|
3835
|
+
include Google::Apis::Core::Hashable
|
3836
|
+
|
3837
|
+
# BREEAM certification.
|
3838
|
+
# Corresponds to the JSON property `breeamCertification`
|
3839
|
+
# @return [String]
|
3840
|
+
attr_accessor :breeam_certification
|
3841
|
+
|
3842
|
+
# BREEAM certification exception.
|
3843
|
+
# Corresponds to the JSON property `breeamCertificationException`
|
3844
|
+
# @return [String]
|
3845
|
+
attr_accessor :breeam_certification_exception
|
3846
|
+
|
3847
|
+
# The eco certificates awarded to the hotel.
|
3848
|
+
# Corresponds to the JSON property `ecoCertifications`
|
3849
|
+
# @return [Array<Google::Apis::MybusinesslodgingV1::EcoCertification>]
|
3850
|
+
attr_accessor :eco_certifications
|
3851
|
+
|
3852
|
+
# LEED certification.
|
3853
|
+
# Corresponds to the JSON property `leedCertification`
|
3854
|
+
# @return [String]
|
3855
|
+
attr_accessor :leed_certification
|
3856
|
+
|
3857
|
+
# LEED certification exception.
|
3858
|
+
# Corresponds to the JSON property `leedCertificationException`
|
3859
|
+
# @return [String]
|
3860
|
+
attr_accessor :leed_certification_exception
|
3861
|
+
|
3862
|
+
def initialize(**args)
|
3863
|
+
update!(**args)
|
3864
|
+
end
|
3865
|
+
|
3866
|
+
# Update properties of this object
|
3867
|
+
def update!(**args)
|
3868
|
+
@breeam_certification = args[:breeam_certification] if args.key?(:breeam_certification)
|
3869
|
+
@breeam_certification_exception = args[:breeam_certification_exception] if args.key?(:breeam_certification_exception)
|
3870
|
+
@eco_certifications = args[:eco_certifications] if args.key?(:eco_certifications)
|
3871
|
+
@leed_certification = args[:leed_certification] if args.key?(:leed_certification)
|
3872
|
+
@leed_certification_exception = args[:leed_certification_exception] if args.key?(:leed_certification_exception)
|
3873
|
+
end
|
3874
|
+
end
|
3875
|
+
|
3876
|
+
# Sustainable sourcing practices implemented at the hotel.
|
3877
|
+
class SustainableSourcing
|
3878
|
+
include Google::Apis::Core::Hashable
|
3879
|
+
|
3880
|
+
# Eco friendly toiletries. Soap, shampoo, lotion, and other toiletries provided
|
3881
|
+
# for guests have a nationally or internationally recognized sustainability
|
3882
|
+
# certification, such as USDA Organic, EU Organic, or cruelty-free.
|
3883
|
+
# Corresponds to the JSON property `ecoFriendlyToiletries`
|
3884
|
+
# @return [Boolean]
|
3885
|
+
attr_accessor :eco_friendly_toiletries
|
3886
|
+
alias_method :eco_friendly_toiletries?, :eco_friendly_toiletries
|
3887
|
+
|
3888
|
+
# Eco friendly toiletries exception.
|
3889
|
+
# Corresponds to the JSON property `ecoFriendlyToiletriesException`
|
3890
|
+
# @return [String]
|
3891
|
+
attr_accessor :eco_friendly_toiletries_exception
|
3892
|
+
|
3893
|
+
# Locally sourced food and beverages. Property sources locally in order to lower
|
3894
|
+
# the environmental footprint from reduced transportation and to stimulate the
|
3895
|
+
# local economy. Products produced less than 62 miles from the establishment are
|
3896
|
+
# normally considered as locally produced.
|
3897
|
+
# Corresponds to the JSON property `locallySourcedFoodAndBeverages`
|
3898
|
+
# @return [Boolean]
|
3899
|
+
attr_accessor :locally_sourced_food_and_beverages
|
3900
|
+
alias_method :locally_sourced_food_and_beverages?, :locally_sourced_food_and_beverages
|
3901
|
+
|
3902
|
+
# Locally sourced food and beverages exception.
|
3903
|
+
# Corresponds to the JSON property `locallySourcedFoodAndBeveragesException`
|
3904
|
+
# @return [String]
|
3905
|
+
attr_accessor :locally_sourced_food_and_beverages_exception
|
3906
|
+
|
3907
|
+
# Organic cage free eggs. The property sources 100% certified organic and cage-
|
3908
|
+
# free eggs (shell, liquid, and egg products). Cage-free means hens are able to
|
3909
|
+
# walk, spread their wings and lay their eggs in nests).
|
3910
|
+
# Corresponds to the JSON property `organicCageFreeEggs`
|
3911
|
+
# @return [Boolean]
|
3912
|
+
attr_accessor :organic_cage_free_eggs
|
3913
|
+
alias_method :organic_cage_free_eggs?, :organic_cage_free_eggs
|
3914
|
+
|
3915
|
+
# Organic cage free eggs exception.
|
3916
|
+
# Corresponds to the JSON property `organicCageFreeEggsException`
|
3917
|
+
# @return [String]
|
3918
|
+
attr_accessor :organic_cage_free_eggs_exception
|
3919
|
+
|
3920
|
+
# Organic food and beverages. At least 25% of food and beverages, by spend, are
|
3921
|
+
# certified organic. Organic means products that are certified to one of the
|
3922
|
+
# organic standard listed in the IFOAM family of standards. Qualifying
|
3923
|
+
# certifications include USDA Organic and EU Organic, among others.
|
3924
|
+
# Corresponds to the JSON property `organicFoodAndBeverages`
|
3925
|
+
# @return [Boolean]
|
3926
|
+
attr_accessor :organic_food_and_beverages
|
3927
|
+
alias_method :organic_food_and_beverages?, :organic_food_and_beverages
|
3928
|
+
|
3929
|
+
# Organic food and beverages exception.
|
3930
|
+
# Corresponds to the JSON property `organicFoodAndBeveragesException`
|
3931
|
+
# @return [String]
|
3932
|
+
attr_accessor :organic_food_and_beverages_exception
|
3933
|
+
|
3934
|
+
# Responsible purchasing policy. The property has a responsible procurement
|
3935
|
+
# policy in place. Responsible means integration of social, ethical, and/or
|
3936
|
+
# environmental performance factors into the procurement process when selecting
|
3937
|
+
# suppliers.
|
3938
|
+
# Corresponds to the JSON property `responsiblePurchasingPolicy`
|
3939
|
+
# @return [Boolean]
|
3940
|
+
attr_accessor :responsible_purchasing_policy
|
3941
|
+
alias_method :responsible_purchasing_policy?, :responsible_purchasing_policy
|
3942
|
+
|
3943
|
+
# Responsible purchasing policy exception.
|
3944
|
+
# Corresponds to the JSON property `responsiblePurchasingPolicyException`
|
3945
|
+
# @return [String]
|
3946
|
+
attr_accessor :responsible_purchasing_policy_exception
|
3947
|
+
|
3948
|
+
# Responsibly sources seafood. The property does not source seafood from the
|
3949
|
+
# Monterey Bay Aquarium Seafood Watch "avoid" list, and must sustainably source
|
3950
|
+
# seafood listed as "good alternative," "eco-certified," and "best choice". The
|
3951
|
+
# property has a policy outlining a commitment to source Marine Stewardship
|
3952
|
+
# Council (MSC) and/or Aquaculture Stewardship Council (ASC) Chain of Custody
|
3953
|
+
# certified seafood.
|
3954
|
+
# Corresponds to the JSON property `responsiblySourcesSeafood`
|
3955
|
+
# @return [Boolean]
|
3956
|
+
attr_accessor :responsibly_sources_seafood
|
3957
|
+
alias_method :responsibly_sources_seafood?, :responsibly_sources_seafood
|
3958
|
+
|
3959
|
+
# Responsibly sources seafood exception.
|
3960
|
+
# Corresponds to the JSON property `responsiblySourcesSeafoodException`
|
3961
|
+
# @return [String]
|
3962
|
+
attr_accessor :responsibly_sources_seafood_exception
|
3963
|
+
|
3964
|
+
# Vegan meals. The property provides vegan menu options for guests. Vegan food
|
3965
|
+
# does not contain animal products or byproducts.
|
3966
|
+
# Corresponds to the JSON property `veganMeals`
|
3967
|
+
# @return [Boolean]
|
3968
|
+
attr_accessor :vegan_meals
|
3969
|
+
alias_method :vegan_meals?, :vegan_meals
|
3970
|
+
|
3971
|
+
# Vegan meals exception.
|
3972
|
+
# Corresponds to the JSON property `veganMealsException`
|
3973
|
+
# @return [String]
|
3974
|
+
attr_accessor :vegan_meals_exception
|
3975
|
+
|
3976
|
+
# Vegetarian meals. The property provides vegetarian menu options for guests.
|
3977
|
+
# Vegetarian food does not contain animal products.
|
3978
|
+
# Corresponds to the JSON property `vegetarianMeals`
|
3979
|
+
# @return [Boolean]
|
3980
|
+
attr_accessor :vegetarian_meals
|
3981
|
+
alias_method :vegetarian_meals?, :vegetarian_meals
|
3982
|
+
|
3983
|
+
# Vegetarian meals exception.
|
3984
|
+
# Corresponds to the JSON property `vegetarianMealsException`
|
3985
|
+
# @return [String]
|
3986
|
+
attr_accessor :vegetarian_meals_exception
|
3987
|
+
|
3988
|
+
def initialize(**args)
|
3989
|
+
update!(**args)
|
3990
|
+
end
|
3991
|
+
|
3992
|
+
# Update properties of this object
|
3993
|
+
def update!(**args)
|
3994
|
+
@eco_friendly_toiletries = args[:eco_friendly_toiletries] if args.key?(:eco_friendly_toiletries)
|
3995
|
+
@eco_friendly_toiletries_exception = args[:eco_friendly_toiletries_exception] if args.key?(:eco_friendly_toiletries_exception)
|
3996
|
+
@locally_sourced_food_and_beverages = args[:locally_sourced_food_and_beverages] if args.key?(:locally_sourced_food_and_beverages)
|
3997
|
+
@locally_sourced_food_and_beverages_exception = args[:locally_sourced_food_and_beverages_exception] if args.key?(:locally_sourced_food_and_beverages_exception)
|
3998
|
+
@organic_cage_free_eggs = args[:organic_cage_free_eggs] if args.key?(:organic_cage_free_eggs)
|
3999
|
+
@organic_cage_free_eggs_exception = args[:organic_cage_free_eggs_exception] if args.key?(:organic_cage_free_eggs_exception)
|
4000
|
+
@organic_food_and_beverages = args[:organic_food_and_beverages] if args.key?(:organic_food_and_beverages)
|
4001
|
+
@organic_food_and_beverages_exception = args[:organic_food_and_beverages_exception] if args.key?(:organic_food_and_beverages_exception)
|
4002
|
+
@responsible_purchasing_policy = args[:responsible_purchasing_policy] if args.key?(:responsible_purchasing_policy)
|
4003
|
+
@responsible_purchasing_policy_exception = args[:responsible_purchasing_policy_exception] if args.key?(:responsible_purchasing_policy_exception)
|
4004
|
+
@responsibly_sources_seafood = args[:responsibly_sources_seafood] if args.key?(:responsibly_sources_seafood)
|
4005
|
+
@responsibly_sources_seafood_exception = args[:responsibly_sources_seafood_exception] if args.key?(:responsibly_sources_seafood_exception)
|
4006
|
+
@vegan_meals = args[:vegan_meals] if args.key?(:vegan_meals)
|
4007
|
+
@vegan_meals_exception = args[:vegan_meals_exception] if args.key?(:vegan_meals_exception)
|
4008
|
+
@vegetarian_meals = args[:vegetarian_meals] if args.key?(:vegetarian_meals)
|
4009
|
+
@vegetarian_meals_exception = args[:vegetarian_meals_exception] if args.key?(:vegetarian_meals_exception)
|
4010
|
+
end
|
4011
|
+
end
|
4012
|
+
|
3616
4013
|
# Represents a time of day. The date and time zone are either not significant or
|
3617
4014
|
# are specified elsewhere. An API may choose to allow leap seconds. Related
|
3618
4015
|
# types are google.type.Date and `google.protobuf.Timestamp`.
|
@@ -3900,6 +4297,369 @@ module Google
|
|
3900
4297
|
end
|
3901
4298
|
end
|
3902
4299
|
|
4300
|
+
# Waste reduction practices implemented at the hotel.
|
4301
|
+
class WasteReduction
|
4302
|
+
include Google::Apis::Core::Hashable
|
4303
|
+
|
4304
|
+
# Compostable food containers and cutlery. 100% of food service containers and
|
4305
|
+
# to-go cutlery are compostable, and reusable utensils are offered wherever
|
4306
|
+
# possible. Compostable materials are capable of undergoing biological
|
4307
|
+
# decomposition in a compost site, such that material is not visually
|
4308
|
+
# distinguishable and breaks down into carbon dioxide, water, inorganic
|
4309
|
+
# compounds, and biomass.
|
4310
|
+
# Corresponds to the JSON property `compostableFoodContainersAndCutlery`
|
4311
|
+
# @return [Boolean]
|
4312
|
+
attr_accessor :compostable_food_containers_and_cutlery
|
4313
|
+
alias_method :compostable_food_containers_and_cutlery?, :compostable_food_containers_and_cutlery
|
4314
|
+
|
4315
|
+
# Compostable food containers and cutlery exception.
|
4316
|
+
# Corresponds to the JSON property `compostableFoodContainersAndCutleryException`
|
4317
|
+
# @return [String]
|
4318
|
+
attr_accessor :compostable_food_containers_and_cutlery_exception
|
4319
|
+
|
4320
|
+
# Composts excess food. The property has a program and/or policy for diverting
|
4321
|
+
# waste from landfill by composting food and yard waste, either through compost
|
4322
|
+
# collection and off-site processing or on-site compost processing.
|
4323
|
+
# Corresponds to the JSON property `compostsExcessFood`
|
4324
|
+
# @return [Boolean]
|
4325
|
+
attr_accessor :composts_excess_food
|
4326
|
+
alias_method :composts_excess_food?, :composts_excess_food
|
4327
|
+
|
4328
|
+
# Composts excess food exception.
|
4329
|
+
# Corresponds to the JSON property `compostsExcessFoodException`
|
4330
|
+
# @return [String]
|
4331
|
+
attr_accessor :composts_excess_food_exception
|
4332
|
+
|
4333
|
+
# Donates excess food. The property has a program and/or policy for diverting
|
4334
|
+
# waste from landfill that may include efforts to donate for human consumption
|
4335
|
+
# or divert food for animal feed.
|
4336
|
+
# Corresponds to the JSON property `donatesExcessFood`
|
4337
|
+
# @return [Boolean]
|
4338
|
+
attr_accessor :donates_excess_food
|
4339
|
+
alias_method :donates_excess_food?, :donates_excess_food
|
4340
|
+
|
4341
|
+
# Donates excess food exception.
|
4342
|
+
# Corresponds to the JSON property `donatesExcessFoodException`
|
4343
|
+
# @return [String]
|
4344
|
+
attr_accessor :donates_excess_food_exception
|
4345
|
+
|
4346
|
+
# Food waste reduction program. The property has established a food waste
|
4347
|
+
# reduction and donation program, aiming to reduce food waste by half. These
|
4348
|
+
# programs typically use tools such as the Hotel Kitchen Toolkit and others to
|
4349
|
+
# track waste and measure progress.
|
4350
|
+
# Corresponds to the JSON property `foodWasteReductionProgram`
|
4351
|
+
# @return [Boolean]
|
4352
|
+
attr_accessor :food_waste_reduction_program
|
4353
|
+
alias_method :food_waste_reduction_program?, :food_waste_reduction_program
|
4354
|
+
|
4355
|
+
# Food waste reduction program exception.
|
4356
|
+
# Corresponds to the JSON property `foodWasteReductionProgramException`
|
4357
|
+
# @return [String]
|
4358
|
+
attr_accessor :food_waste_reduction_program_exception
|
4359
|
+
|
4360
|
+
# No single use plastic straws. The property bans single-use plastic straws.
|
4361
|
+
# Corresponds to the JSON property `noSingleUsePlasticStraws`
|
4362
|
+
# @return [Boolean]
|
4363
|
+
attr_accessor :no_single_use_plastic_straws
|
4364
|
+
alias_method :no_single_use_plastic_straws?, :no_single_use_plastic_straws
|
4365
|
+
|
4366
|
+
# No single use plastic straws exception.
|
4367
|
+
# Corresponds to the JSON property `noSingleUsePlasticStrawsException`
|
4368
|
+
# @return [String]
|
4369
|
+
attr_accessor :no_single_use_plastic_straws_exception
|
4370
|
+
|
4371
|
+
# No single use plastic water bottles. The property bans single-use plastic
|
4372
|
+
# water bottles.
|
4373
|
+
# Corresponds to the JSON property `noSingleUsePlasticWaterBottles`
|
4374
|
+
# @return [Boolean]
|
4375
|
+
attr_accessor :no_single_use_plastic_water_bottles
|
4376
|
+
alias_method :no_single_use_plastic_water_bottles?, :no_single_use_plastic_water_bottles
|
4377
|
+
|
4378
|
+
# No single use plastic water bottles exception.
|
4379
|
+
# Corresponds to the JSON property `noSingleUsePlasticWaterBottlesException`
|
4380
|
+
# @return [String]
|
4381
|
+
attr_accessor :no_single_use_plastic_water_bottles_exception
|
4382
|
+
|
4383
|
+
# No styrofoam food containers. The property eliminates the use of Styrofoam in
|
4384
|
+
# disposable food service items.
|
4385
|
+
# Corresponds to the JSON property `noStyrofoamFoodContainers`
|
4386
|
+
# @return [Boolean]
|
4387
|
+
attr_accessor :no_styrofoam_food_containers
|
4388
|
+
alias_method :no_styrofoam_food_containers?, :no_styrofoam_food_containers
|
4389
|
+
|
4390
|
+
# No styrofoam food containers exception.
|
4391
|
+
# Corresponds to the JSON property `noStyrofoamFoodContainersException`
|
4392
|
+
# @return [String]
|
4393
|
+
attr_accessor :no_styrofoam_food_containers_exception
|
4394
|
+
|
4395
|
+
# Recycling program. The property has a recycling program, aligned with LEED
|
4396
|
+
# waste requirements, and a policy outlining efforts to send less than 50% of
|
4397
|
+
# waste to landfill. The recycling program includes storage locations for
|
4398
|
+
# recyclable materials, including mixed paper, corrugated cardboard, glass,
|
4399
|
+
# plastics, and metals.
|
4400
|
+
# Corresponds to the JSON property `recyclingProgram`
|
4401
|
+
# @return [Boolean]
|
4402
|
+
attr_accessor :recycling_program
|
4403
|
+
alias_method :recycling_program?, :recycling_program
|
4404
|
+
|
4405
|
+
# Recycling program exception.
|
4406
|
+
# Corresponds to the JSON property `recyclingProgramException`
|
4407
|
+
# @return [String]
|
4408
|
+
attr_accessor :recycling_program_exception
|
4409
|
+
|
4410
|
+
# Refillable toiletry containers. The property has replaced miniature individual
|
4411
|
+
# containers with refillable amenity dispensers for shampoo, conditioner, soap,
|
4412
|
+
# and lotion.
|
4413
|
+
# Corresponds to the JSON property `refillableToiletryContainers`
|
4414
|
+
# @return [Boolean]
|
4415
|
+
attr_accessor :refillable_toiletry_containers
|
4416
|
+
alias_method :refillable_toiletry_containers?, :refillable_toiletry_containers
|
4417
|
+
|
4418
|
+
# Refillable toiletry containers exception.
|
4419
|
+
# Corresponds to the JSON property `refillableToiletryContainersException`
|
4420
|
+
# @return [String]
|
4421
|
+
attr_accessor :refillable_toiletry_containers_exception
|
4422
|
+
|
4423
|
+
# Safely disposes batteries. The property safely stores and disposes batteries.
|
4424
|
+
# Corresponds to the JSON property `safelyDisposesBatteries`
|
4425
|
+
# @return [Boolean]
|
4426
|
+
attr_accessor :safely_disposes_batteries
|
4427
|
+
alias_method :safely_disposes_batteries?, :safely_disposes_batteries
|
4428
|
+
|
4429
|
+
# Safely disposes batteries exception.
|
4430
|
+
# Corresponds to the JSON property `safelyDisposesBatteriesException`
|
4431
|
+
# @return [String]
|
4432
|
+
attr_accessor :safely_disposes_batteries_exception
|
4433
|
+
|
4434
|
+
# Safely disposes electronics. The property has a reputable recycling program
|
4435
|
+
# that keeps hazardous electronic parts and chemical compounds out of landfills,
|
4436
|
+
# dumps and other unauthorized abandonment sites, and recycles/reuses applicable
|
4437
|
+
# materials. (e.g. certified electronics recyclers).
|
4438
|
+
# Corresponds to the JSON property `safelyDisposesElectronics`
|
4439
|
+
# @return [Boolean]
|
4440
|
+
attr_accessor :safely_disposes_electronics
|
4441
|
+
alias_method :safely_disposes_electronics?, :safely_disposes_electronics
|
4442
|
+
|
4443
|
+
# Safely disposes electronics exception.
|
4444
|
+
# Corresponds to the JSON property `safelyDisposesElectronicsException`
|
4445
|
+
# @return [String]
|
4446
|
+
attr_accessor :safely_disposes_electronics_exception
|
4447
|
+
|
4448
|
+
# Safely disposes lightbulbs. The property safely stores and disposes lightbulbs.
|
4449
|
+
# Corresponds to the JSON property `safelyDisposesLightbulbs`
|
4450
|
+
# @return [Boolean]
|
4451
|
+
attr_accessor :safely_disposes_lightbulbs
|
4452
|
+
alias_method :safely_disposes_lightbulbs?, :safely_disposes_lightbulbs
|
4453
|
+
|
4454
|
+
# Safely disposes lightbulbs exception.
|
4455
|
+
# Corresponds to the JSON property `safelyDisposesLightbulbsException`
|
4456
|
+
# @return [String]
|
4457
|
+
attr_accessor :safely_disposes_lightbulbs_exception
|
4458
|
+
|
4459
|
+
# Safely handles hazardous substances. The property has a hazardous waste
|
4460
|
+
# management program aligned wit GreenSeal and LEED requirements, and meets all
|
4461
|
+
# regulatory requirements for hazardous waste disposal and recycling. Hazardous
|
4462
|
+
# means substances that are classified as "hazardous" by an authoritative body (
|
4463
|
+
# such as OSHA or DOT), are labeled with signal words such as "Danger," "Caution,
|
4464
|
+
# " "Warning," or are flammable, corrosive, or ignitable. Requirements include: -
|
4465
|
+
# The property shall maintain records of the efforts it has made to replace the
|
4466
|
+
# hazardous substances it uses with less hazardous alternatives. - An inventory
|
4467
|
+
# of the hazardous materials stored on-site. - Products intended for cleaning,
|
4468
|
+
# dishwashing, laundry, and pool maintenance shall be stored in clearly labeled
|
4469
|
+
# containers. These containers shall be checked regularly for leaks, and
|
4470
|
+
# replaced a necessary. - Spill containment devices shall be installed to
|
4471
|
+
# collect spills, drips, or leaching of chemicals.
|
4472
|
+
# Corresponds to the JSON property `safelyHandlesHazardousSubstances`
|
4473
|
+
# @return [Boolean]
|
4474
|
+
attr_accessor :safely_handles_hazardous_substances
|
4475
|
+
alias_method :safely_handles_hazardous_substances?, :safely_handles_hazardous_substances
|
4476
|
+
|
4477
|
+
# Safely handles hazardous substances exception.
|
4478
|
+
# Corresponds to the JSON property `safelyHandlesHazardousSubstancesException`
|
4479
|
+
# @return [String]
|
4480
|
+
attr_accessor :safely_handles_hazardous_substances_exception
|
4481
|
+
|
4482
|
+
# Soap donation program. The property participates in a soap donation program
|
4483
|
+
# such as Clean the World or something similar.
|
4484
|
+
# Corresponds to the JSON property `soapDonationProgram`
|
4485
|
+
# @return [Boolean]
|
4486
|
+
attr_accessor :soap_donation_program
|
4487
|
+
alias_method :soap_donation_program?, :soap_donation_program
|
4488
|
+
|
4489
|
+
# Soap donation program exception.
|
4490
|
+
# Corresponds to the JSON property `soapDonationProgramException`
|
4491
|
+
# @return [String]
|
4492
|
+
attr_accessor :soap_donation_program_exception
|
4493
|
+
|
4494
|
+
# Toiletry donation program. The property participates in a toiletry donation
|
4495
|
+
# program such as Clean the World or something similar.
|
4496
|
+
# Corresponds to the JSON property `toiletryDonationProgram`
|
4497
|
+
# @return [Boolean]
|
4498
|
+
attr_accessor :toiletry_donation_program
|
4499
|
+
alias_method :toiletry_donation_program?, :toiletry_donation_program
|
4500
|
+
|
4501
|
+
# Toiletry donation program exception.
|
4502
|
+
# Corresponds to the JSON property `toiletryDonationProgramException`
|
4503
|
+
# @return [String]
|
4504
|
+
attr_accessor :toiletry_donation_program_exception
|
4505
|
+
|
4506
|
+
# Water bottle filling stations. The property offers water stations throughout
|
4507
|
+
# the building for guest use.
|
4508
|
+
# Corresponds to the JSON property `waterBottleFillingStations`
|
4509
|
+
# @return [Boolean]
|
4510
|
+
attr_accessor :water_bottle_filling_stations
|
4511
|
+
alias_method :water_bottle_filling_stations?, :water_bottle_filling_stations
|
4512
|
+
|
4513
|
+
# Water bottle filling stations exception.
|
4514
|
+
# Corresponds to the JSON property `waterBottleFillingStationsException`
|
4515
|
+
# @return [String]
|
4516
|
+
attr_accessor :water_bottle_filling_stations_exception
|
4517
|
+
|
4518
|
+
def initialize(**args)
|
4519
|
+
update!(**args)
|
4520
|
+
end
|
4521
|
+
|
4522
|
+
# Update properties of this object
|
4523
|
+
def update!(**args)
|
4524
|
+
@compostable_food_containers_and_cutlery = args[:compostable_food_containers_and_cutlery] if args.key?(:compostable_food_containers_and_cutlery)
|
4525
|
+
@compostable_food_containers_and_cutlery_exception = args[:compostable_food_containers_and_cutlery_exception] if args.key?(:compostable_food_containers_and_cutlery_exception)
|
4526
|
+
@composts_excess_food = args[:composts_excess_food] if args.key?(:composts_excess_food)
|
4527
|
+
@composts_excess_food_exception = args[:composts_excess_food_exception] if args.key?(:composts_excess_food_exception)
|
4528
|
+
@donates_excess_food = args[:donates_excess_food] if args.key?(:donates_excess_food)
|
4529
|
+
@donates_excess_food_exception = args[:donates_excess_food_exception] if args.key?(:donates_excess_food_exception)
|
4530
|
+
@food_waste_reduction_program = args[:food_waste_reduction_program] if args.key?(:food_waste_reduction_program)
|
4531
|
+
@food_waste_reduction_program_exception = args[:food_waste_reduction_program_exception] if args.key?(:food_waste_reduction_program_exception)
|
4532
|
+
@no_single_use_plastic_straws = args[:no_single_use_plastic_straws] if args.key?(:no_single_use_plastic_straws)
|
4533
|
+
@no_single_use_plastic_straws_exception = args[:no_single_use_plastic_straws_exception] if args.key?(:no_single_use_plastic_straws_exception)
|
4534
|
+
@no_single_use_plastic_water_bottles = args[:no_single_use_plastic_water_bottles] if args.key?(:no_single_use_plastic_water_bottles)
|
4535
|
+
@no_single_use_plastic_water_bottles_exception = args[:no_single_use_plastic_water_bottles_exception] if args.key?(:no_single_use_plastic_water_bottles_exception)
|
4536
|
+
@no_styrofoam_food_containers = args[:no_styrofoam_food_containers] if args.key?(:no_styrofoam_food_containers)
|
4537
|
+
@no_styrofoam_food_containers_exception = args[:no_styrofoam_food_containers_exception] if args.key?(:no_styrofoam_food_containers_exception)
|
4538
|
+
@recycling_program = args[:recycling_program] if args.key?(:recycling_program)
|
4539
|
+
@recycling_program_exception = args[:recycling_program_exception] if args.key?(:recycling_program_exception)
|
4540
|
+
@refillable_toiletry_containers = args[:refillable_toiletry_containers] if args.key?(:refillable_toiletry_containers)
|
4541
|
+
@refillable_toiletry_containers_exception = args[:refillable_toiletry_containers_exception] if args.key?(:refillable_toiletry_containers_exception)
|
4542
|
+
@safely_disposes_batteries = args[:safely_disposes_batteries] if args.key?(:safely_disposes_batteries)
|
4543
|
+
@safely_disposes_batteries_exception = args[:safely_disposes_batteries_exception] if args.key?(:safely_disposes_batteries_exception)
|
4544
|
+
@safely_disposes_electronics = args[:safely_disposes_electronics] if args.key?(:safely_disposes_electronics)
|
4545
|
+
@safely_disposes_electronics_exception = args[:safely_disposes_electronics_exception] if args.key?(:safely_disposes_electronics_exception)
|
4546
|
+
@safely_disposes_lightbulbs = args[:safely_disposes_lightbulbs] if args.key?(:safely_disposes_lightbulbs)
|
4547
|
+
@safely_disposes_lightbulbs_exception = args[:safely_disposes_lightbulbs_exception] if args.key?(:safely_disposes_lightbulbs_exception)
|
4548
|
+
@safely_handles_hazardous_substances = args[:safely_handles_hazardous_substances] if args.key?(:safely_handles_hazardous_substances)
|
4549
|
+
@safely_handles_hazardous_substances_exception = args[:safely_handles_hazardous_substances_exception] if args.key?(:safely_handles_hazardous_substances_exception)
|
4550
|
+
@soap_donation_program = args[:soap_donation_program] if args.key?(:soap_donation_program)
|
4551
|
+
@soap_donation_program_exception = args[:soap_donation_program_exception] if args.key?(:soap_donation_program_exception)
|
4552
|
+
@toiletry_donation_program = args[:toiletry_donation_program] if args.key?(:toiletry_donation_program)
|
4553
|
+
@toiletry_donation_program_exception = args[:toiletry_donation_program_exception] if args.key?(:toiletry_donation_program_exception)
|
4554
|
+
@water_bottle_filling_stations = args[:water_bottle_filling_stations] if args.key?(:water_bottle_filling_stations)
|
4555
|
+
@water_bottle_filling_stations_exception = args[:water_bottle_filling_stations_exception] if args.key?(:water_bottle_filling_stations_exception)
|
4556
|
+
end
|
4557
|
+
end
|
4558
|
+
|
4559
|
+
# Water conservation practices implemented at the hotel.
|
4560
|
+
class WaterConservation
|
4561
|
+
include Google::Apis::Core::Hashable
|
4562
|
+
|
4563
|
+
# Independent organization audits water use. The property conducts a water
|
4564
|
+
# conservation audit every 5 years, the results of which are either verified by
|
4565
|
+
# a third-party and/or published in external communications. A water
|
4566
|
+
# conservation audit is a detailed assessment of the facility, providing
|
4567
|
+
# recommendations to existing operations and procedures to improve water
|
4568
|
+
# efficiency, available incentives or rebates, and opportunities for
|
4569
|
+
# improvements through renovations or upgrades. Examples of organizations who
|
4570
|
+
# conduct credible third party audits include: Engie Impact, and local utility
|
4571
|
+
# providers (they often provide energy and water audits).
|
4572
|
+
# Corresponds to the JSON property `independentOrganizationAuditsWaterUse`
|
4573
|
+
# @return [Boolean]
|
4574
|
+
attr_accessor :independent_organization_audits_water_use
|
4575
|
+
alias_method :independent_organization_audits_water_use?, :independent_organization_audits_water_use
|
4576
|
+
|
4577
|
+
# Independent organization audits water use exception.
|
4578
|
+
# Corresponds to the JSON property `independentOrganizationAuditsWaterUseException`
|
4579
|
+
# @return [String]
|
4580
|
+
attr_accessor :independent_organization_audits_water_use_exception
|
4581
|
+
|
4582
|
+
# Linen reuse program. The property offers a linen reuse program.
|
4583
|
+
# Corresponds to the JSON property `linenReuseProgram`
|
4584
|
+
# @return [Boolean]
|
4585
|
+
attr_accessor :linen_reuse_program
|
4586
|
+
alias_method :linen_reuse_program?, :linen_reuse_program
|
4587
|
+
|
4588
|
+
# Linen reuse program exception.
|
4589
|
+
# Corresponds to the JSON property `linenReuseProgramException`
|
4590
|
+
# @return [String]
|
4591
|
+
attr_accessor :linen_reuse_program_exception
|
4592
|
+
|
4593
|
+
# Towel reuse program. The property offers a towel reuse program.
|
4594
|
+
# Corresponds to the JSON property `towelReuseProgram`
|
4595
|
+
# @return [Boolean]
|
4596
|
+
attr_accessor :towel_reuse_program
|
4597
|
+
alias_method :towel_reuse_program?, :towel_reuse_program
|
4598
|
+
|
4599
|
+
# Towel reuse program exception.
|
4600
|
+
# Corresponds to the JSON property `towelReuseProgramException`
|
4601
|
+
# @return [String]
|
4602
|
+
attr_accessor :towel_reuse_program_exception
|
4603
|
+
|
4604
|
+
# Water saving showers. All of the property's guest rooms have shower heads that
|
4605
|
+
# use no more than 2.0 gallons per minute (gpm).
|
4606
|
+
# Corresponds to the JSON property `waterSavingShowers`
|
4607
|
+
# @return [Boolean]
|
4608
|
+
attr_accessor :water_saving_showers
|
4609
|
+
alias_method :water_saving_showers?, :water_saving_showers
|
4610
|
+
|
4611
|
+
# Water saving showers exception.
|
4612
|
+
# Corresponds to the JSON property `waterSavingShowersException`
|
4613
|
+
# @return [String]
|
4614
|
+
attr_accessor :water_saving_showers_exception
|
4615
|
+
|
4616
|
+
# Water saving sinks. All of the property's guest rooms have bathroom faucets
|
4617
|
+
# that use a maximum of 1.5 gallons per minute (gpm), public restroom faucets do
|
4618
|
+
# not exceed 0.5 gpm, and kitchen faucets (excluding faucets used exclusively
|
4619
|
+
# for filling operations) do not exceed 2.2 gpm.
|
4620
|
+
# Corresponds to the JSON property `waterSavingSinks`
|
4621
|
+
# @return [Boolean]
|
4622
|
+
attr_accessor :water_saving_sinks
|
4623
|
+
alias_method :water_saving_sinks?, :water_saving_sinks
|
4624
|
+
|
4625
|
+
# Water saving sinks exception.
|
4626
|
+
# Corresponds to the JSON property `waterSavingSinksException`
|
4627
|
+
# @return [String]
|
4628
|
+
attr_accessor :water_saving_sinks_exception
|
4629
|
+
|
4630
|
+
# Water saving toilets. All of the property's toilets use 1.6 gallons per flush,
|
4631
|
+
# or less.
|
4632
|
+
# Corresponds to the JSON property `waterSavingToilets`
|
4633
|
+
# @return [Boolean]
|
4634
|
+
attr_accessor :water_saving_toilets
|
4635
|
+
alias_method :water_saving_toilets?, :water_saving_toilets
|
4636
|
+
|
4637
|
+
# Water saving toilets exception.
|
4638
|
+
# Corresponds to the JSON property `waterSavingToiletsException`
|
4639
|
+
# @return [String]
|
4640
|
+
attr_accessor :water_saving_toilets_exception
|
4641
|
+
|
4642
|
+
def initialize(**args)
|
4643
|
+
update!(**args)
|
4644
|
+
end
|
4645
|
+
|
4646
|
+
# Update properties of this object
|
4647
|
+
def update!(**args)
|
4648
|
+
@independent_organization_audits_water_use = args[:independent_organization_audits_water_use] if args.key?(:independent_organization_audits_water_use)
|
4649
|
+
@independent_organization_audits_water_use_exception = args[:independent_organization_audits_water_use_exception] if args.key?(:independent_organization_audits_water_use_exception)
|
4650
|
+
@linen_reuse_program = args[:linen_reuse_program] if args.key?(:linen_reuse_program)
|
4651
|
+
@linen_reuse_program_exception = args[:linen_reuse_program_exception] if args.key?(:linen_reuse_program_exception)
|
4652
|
+
@towel_reuse_program = args[:towel_reuse_program] if args.key?(:towel_reuse_program)
|
4653
|
+
@towel_reuse_program_exception = args[:towel_reuse_program_exception] if args.key?(:towel_reuse_program_exception)
|
4654
|
+
@water_saving_showers = args[:water_saving_showers] if args.key?(:water_saving_showers)
|
4655
|
+
@water_saving_showers_exception = args[:water_saving_showers_exception] if args.key?(:water_saving_showers_exception)
|
4656
|
+
@water_saving_sinks = args[:water_saving_sinks] if args.key?(:water_saving_sinks)
|
4657
|
+
@water_saving_sinks_exception = args[:water_saving_sinks_exception] if args.key?(:water_saving_sinks_exception)
|
4658
|
+
@water_saving_toilets = args[:water_saving_toilets] if args.key?(:water_saving_toilets)
|
4659
|
+
@water_saving_toilets_exception = args[:water_saving_toilets_exception] if args.key?(:water_saving_toilets_exception)
|
4660
|
+
end
|
4661
|
+
end
|
4662
|
+
|
3903
4663
|
# Guest facilities at the property to promote or maintain health, beauty, and
|
3904
4664
|
# fitness.
|
3905
4665
|
class Wellness
|
@@ -16,13 +16,13 @@ module Google
|
|
16
16
|
module Apis
|
17
17
|
module MybusinesslodgingV1
|
18
18
|
# Version of the google-apis-mybusinesslodging_v1 gem
|
19
|
-
GEM_VERSION = "0.
|
19
|
+
GEM_VERSION = "0.7.0"
|
20
20
|
|
21
21
|
# Version of the code generator used to generate this client
|
22
|
-
GENERATOR_VERSION = "0.
|
22
|
+
GENERATOR_VERSION = "0.4.0"
|
23
23
|
|
24
24
|
# Revision of the discovery document this client was generated from
|
25
|
-
REVISION = "
|
25
|
+
REVISION = "20210908"
|
26
26
|
end
|
27
27
|
end
|
28
28
|
end
|
@@ -46,6 +46,18 @@ module Google
|
|
46
46
|
include Google::Apis::Core::JsonObjectSupport
|
47
47
|
end
|
48
48
|
|
49
|
+
class EcoCertification
|
50
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
|
+
|
52
|
+
include Google::Apis::Core::JsonObjectSupport
|
53
|
+
end
|
54
|
+
|
55
|
+
class EnergyEfficiency
|
56
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
57
|
+
|
58
|
+
include Google::Apis::Core::JsonObjectSupport
|
59
|
+
end
|
60
|
+
|
49
61
|
class EnhancedCleaning
|
50
62
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
51
63
|
|
@@ -214,6 +226,24 @@ module Google
|
|
214
226
|
include Google::Apis::Core::JsonObjectSupport
|
215
227
|
end
|
216
228
|
|
229
|
+
class Sustainability
|
230
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
231
|
+
|
232
|
+
include Google::Apis::Core::JsonObjectSupport
|
233
|
+
end
|
234
|
+
|
235
|
+
class SustainabilityCertifications
|
236
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
|
+
|
238
|
+
include Google::Apis::Core::JsonObjectSupport
|
239
|
+
end
|
240
|
+
|
241
|
+
class SustainableSourcing
|
242
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
243
|
+
|
244
|
+
include Google::Apis::Core::JsonObjectSupport
|
245
|
+
end
|
246
|
+
|
217
247
|
class TimeOfDay
|
218
248
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
219
249
|
|
@@ -232,6 +262,18 @@ module Google
|
|
232
262
|
include Google::Apis::Core::JsonObjectSupport
|
233
263
|
end
|
234
264
|
|
265
|
+
class WasteReduction
|
266
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
267
|
+
|
268
|
+
include Google::Apis::Core::JsonObjectSupport
|
269
|
+
end
|
270
|
+
|
271
|
+
class WaterConservation
|
272
|
+
class Representation < Google::Apis::Core::JsonRepresentation; end
|
273
|
+
|
274
|
+
include Google::Apis::Core::JsonObjectSupport
|
275
|
+
end
|
276
|
+
|
235
277
|
class Wellness
|
236
278
|
class Representation < Google::Apis::Core::JsonRepresentation; end
|
237
279
|
|
@@ -318,6 +360,35 @@ module Google
|
|
318
360
|
end
|
319
361
|
end
|
320
362
|
|
363
|
+
class EcoCertification
|
364
|
+
# @private
|
365
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
366
|
+
property :awarded, as: 'awarded'
|
367
|
+
property :awarded_exception, as: 'awardedException'
|
368
|
+
property :eco_certificate, as: 'ecoCertificate'
|
369
|
+
end
|
370
|
+
end
|
371
|
+
|
372
|
+
class EnergyEfficiency
|
373
|
+
# @private
|
374
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
375
|
+
property :carbon_free_energy_sources, as: 'carbonFreeEnergySources'
|
376
|
+
property :carbon_free_energy_sources_exception, as: 'carbonFreeEnergySourcesException'
|
377
|
+
property :energy_conservation_program, as: 'energyConservationProgram'
|
378
|
+
property :energy_conservation_program_exception, as: 'energyConservationProgramException'
|
379
|
+
property :energy_efficient_heating_and_cooling_systems, as: 'energyEfficientHeatingAndCoolingSystems'
|
380
|
+
property :energy_efficient_heating_and_cooling_systems_exception, as: 'energyEfficientHeatingAndCoolingSystemsException'
|
381
|
+
property :energy_efficient_lighting, as: 'energyEfficientLighting'
|
382
|
+
property :energy_efficient_lighting_exception, as: 'energyEfficientLightingException'
|
383
|
+
property :energy_saving_thermostats, as: 'energySavingThermostats'
|
384
|
+
property :energy_saving_thermostats_exception, as: 'energySavingThermostatsException'
|
385
|
+
property :green_building_design, as: 'greenBuildingDesign'
|
386
|
+
property :green_building_design_exception, as: 'greenBuildingDesignException'
|
387
|
+
property :independent_organization_audits_energy_use, as: 'independentOrganizationAuditsEnergyUse'
|
388
|
+
property :independent_organization_audits_energy_use_exception, as: 'independentOrganizationAuditsEnergyUseException'
|
389
|
+
end
|
390
|
+
end
|
391
|
+
|
321
392
|
class EnhancedCleaning
|
322
393
|
# @private
|
323
394
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -694,6 +765,8 @@ module Google
|
|
694
765
|
|
695
766
|
property :some_units, as: 'someUnits', class: Google::Apis::MybusinesslodgingV1::GuestUnitFeatures, decorator: Google::Apis::MybusinesslodgingV1::GuestUnitFeatures::Representation
|
696
767
|
|
768
|
+
property :sustainability, as: 'sustainability', class: Google::Apis::MybusinesslodgingV1::Sustainability, decorator: Google::Apis::MybusinesslodgingV1::Sustainability::Representation
|
769
|
+
|
697
770
|
property :transportation, as: 'transportation', class: Google::Apis::MybusinesslodgingV1::Transportation, decorator: Google::Apis::MybusinesslodgingV1::Transportation::Representation
|
698
771
|
|
699
772
|
property :wellness, as: 'wellness', class: Google::Apis::MybusinesslodgingV1::Wellness, decorator: Google::Apis::MybusinesslodgingV1::Wellness::Representation
|
@@ -914,6 +987,56 @@ module Google
|
|
914
987
|
end
|
915
988
|
end
|
916
989
|
|
990
|
+
class Sustainability
|
991
|
+
# @private
|
992
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
993
|
+
property :energy_efficiency, as: 'energyEfficiency', class: Google::Apis::MybusinesslodgingV1::EnergyEfficiency, decorator: Google::Apis::MybusinesslodgingV1::EnergyEfficiency::Representation
|
994
|
+
|
995
|
+
property :sustainability_certifications, as: 'sustainabilityCertifications', class: Google::Apis::MybusinesslodgingV1::SustainabilityCertifications, decorator: Google::Apis::MybusinesslodgingV1::SustainabilityCertifications::Representation
|
996
|
+
|
997
|
+
property :sustainable_sourcing, as: 'sustainableSourcing', class: Google::Apis::MybusinesslodgingV1::SustainableSourcing, decorator: Google::Apis::MybusinesslodgingV1::SustainableSourcing::Representation
|
998
|
+
|
999
|
+
property :waste_reduction, as: 'wasteReduction', class: Google::Apis::MybusinesslodgingV1::WasteReduction, decorator: Google::Apis::MybusinesslodgingV1::WasteReduction::Representation
|
1000
|
+
|
1001
|
+
property :water_conservation, as: 'waterConservation', class: Google::Apis::MybusinesslodgingV1::WaterConservation, decorator: Google::Apis::MybusinesslodgingV1::WaterConservation::Representation
|
1002
|
+
|
1003
|
+
end
|
1004
|
+
end
|
1005
|
+
|
1006
|
+
class SustainabilityCertifications
|
1007
|
+
# @private
|
1008
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1009
|
+
property :breeam_certification, as: 'breeamCertification'
|
1010
|
+
property :breeam_certification_exception, as: 'breeamCertificationException'
|
1011
|
+
collection :eco_certifications, as: 'ecoCertifications', class: Google::Apis::MybusinesslodgingV1::EcoCertification, decorator: Google::Apis::MybusinesslodgingV1::EcoCertification::Representation
|
1012
|
+
|
1013
|
+
property :leed_certification, as: 'leedCertification'
|
1014
|
+
property :leed_certification_exception, as: 'leedCertificationException'
|
1015
|
+
end
|
1016
|
+
end
|
1017
|
+
|
1018
|
+
class SustainableSourcing
|
1019
|
+
# @private
|
1020
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1021
|
+
property :eco_friendly_toiletries, as: 'ecoFriendlyToiletries'
|
1022
|
+
property :eco_friendly_toiletries_exception, as: 'ecoFriendlyToiletriesException'
|
1023
|
+
property :locally_sourced_food_and_beverages, as: 'locallySourcedFoodAndBeverages'
|
1024
|
+
property :locally_sourced_food_and_beverages_exception, as: 'locallySourcedFoodAndBeveragesException'
|
1025
|
+
property :organic_cage_free_eggs, as: 'organicCageFreeEggs'
|
1026
|
+
property :organic_cage_free_eggs_exception, as: 'organicCageFreeEggsException'
|
1027
|
+
property :organic_food_and_beverages, as: 'organicFoodAndBeverages'
|
1028
|
+
property :organic_food_and_beverages_exception, as: 'organicFoodAndBeveragesException'
|
1029
|
+
property :responsible_purchasing_policy, as: 'responsiblePurchasingPolicy'
|
1030
|
+
property :responsible_purchasing_policy_exception, as: 'responsiblePurchasingPolicyException'
|
1031
|
+
property :responsibly_sources_seafood, as: 'responsiblySourcesSeafood'
|
1032
|
+
property :responsibly_sources_seafood_exception, as: 'responsiblySourcesSeafoodException'
|
1033
|
+
property :vegan_meals, as: 'veganMeals'
|
1034
|
+
property :vegan_meals_exception, as: 'veganMealsException'
|
1035
|
+
property :vegetarian_meals, as: 'vegetarianMeals'
|
1036
|
+
property :vegetarian_meals_exception, as: 'vegetarianMealsException'
|
1037
|
+
end
|
1038
|
+
end
|
1039
|
+
|
917
1040
|
class TimeOfDay
|
918
1041
|
# @private
|
919
1042
|
class Representation < Google::Apis::Core::JsonRepresentation
|
@@ -966,6 +1089,62 @@ module Google
|
|
966
1089
|
end
|
967
1090
|
end
|
968
1091
|
|
1092
|
+
class WasteReduction
|
1093
|
+
# @private
|
1094
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1095
|
+
property :compostable_food_containers_and_cutlery, as: 'compostableFoodContainersAndCutlery'
|
1096
|
+
property :compostable_food_containers_and_cutlery_exception, as: 'compostableFoodContainersAndCutleryException'
|
1097
|
+
property :composts_excess_food, as: 'compostsExcessFood'
|
1098
|
+
property :composts_excess_food_exception, as: 'compostsExcessFoodException'
|
1099
|
+
property :donates_excess_food, as: 'donatesExcessFood'
|
1100
|
+
property :donates_excess_food_exception, as: 'donatesExcessFoodException'
|
1101
|
+
property :food_waste_reduction_program, as: 'foodWasteReductionProgram'
|
1102
|
+
property :food_waste_reduction_program_exception, as: 'foodWasteReductionProgramException'
|
1103
|
+
property :no_single_use_plastic_straws, as: 'noSingleUsePlasticStraws'
|
1104
|
+
property :no_single_use_plastic_straws_exception, as: 'noSingleUsePlasticStrawsException'
|
1105
|
+
property :no_single_use_plastic_water_bottles, as: 'noSingleUsePlasticWaterBottles'
|
1106
|
+
property :no_single_use_plastic_water_bottles_exception, as: 'noSingleUsePlasticWaterBottlesException'
|
1107
|
+
property :no_styrofoam_food_containers, as: 'noStyrofoamFoodContainers'
|
1108
|
+
property :no_styrofoam_food_containers_exception, as: 'noStyrofoamFoodContainersException'
|
1109
|
+
property :recycling_program, as: 'recyclingProgram'
|
1110
|
+
property :recycling_program_exception, as: 'recyclingProgramException'
|
1111
|
+
property :refillable_toiletry_containers, as: 'refillableToiletryContainers'
|
1112
|
+
property :refillable_toiletry_containers_exception, as: 'refillableToiletryContainersException'
|
1113
|
+
property :safely_disposes_batteries, as: 'safelyDisposesBatteries'
|
1114
|
+
property :safely_disposes_batteries_exception, as: 'safelyDisposesBatteriesException'
|
1115
|
+
property :safely_disposes_electronics, as: 'safelyDisposesElectronics'
|
1116
|
+
property :safely_disposes_electronics_exception, as: 'safelyDisposesElectronicsException'
|
1117
|
+
property :safely_disposes_lightbulbs, as: 'safelyDisposesLightbulbs'
|
1118
|
+
property :safely_disposes_lightbulbs_exception, as: 'safelyDisposesLightbulbsException'
|
1119
|
+
property :safely_handles_hazardous_substances, as: 'safelyHandlesHazardousSubstances'
|
1120
|
+
property :safely_handles_hazardous_substances_exception, as: 'safelyHandlesHazardousSubstancesException'
|
1121
|
+
property :soap_donation_program, as: 'soapDonationProgram'
|
1122
|
+
property :soap_donation_program_exception, as: 'soapDonationProgramException'
|
1123
|
+
property :toiletry_donation_program, as: 'toiletryDonationProgram'
|
1124
|
+
property :toiletry_donation_program_exception, as: 'toiletryDonationProgramException'
|
1125
|
+
property :water_bottle_filling_stations, as: 'waterBottleFillingStations'
|
1126
|
+
property :water_bottle_filling_stations_exception, as: 'waterBottleFillingStationsException'
|
1127
|
+
end
|
1128
|
+
end
|
1129
|
+
|
1130
|
+
class WaterConservation
|
1131
|
+
# @private
|
1132
|
+
class Representation < Google::Apis::Core::JsonRepresentation
|
1133
|
+
property :independent_organization_audits_water_use, as: 'independentOrganizationAuditsWaterUse'
|
1134
|
+
property :independent_organization_audits_water_use_exception, as: 'independentOrganizationAuditsWaterUseException'
|
1135
|
+
property :linen_reuse_program, as: 'linenReuseProgram'
|
1136
|
+
property :linen_reuse_program_exception, as: 'linenReuseProgramException'
|
1137
|
+
property :towel_reuse_program, as: 'towelReuseProgram'
|
1138
|
+
property :towel_reuse_program_exception, as: 'towelReuseProgramException'
|
1139
|
+
property :water_saving_showers, as: 'waterSavingShowers'
|
1140
|
+
property :water_saving_showers_exception, as: 'waterSavingShowersException'
|
1141
|
+
property :water_saving_sinks, as: 'waterSavingSinks'
|
1142
|
+
property :water_saving_sinks_exception, as: 'waterSavingSinksException'
|
1143
|
+
property :water_saving_toilets, as: 'waterSavingToilets'
|
1144
|
+
property :water_saving_toilets_exception, as: 'waterSavingToiletsException'
|
1145
|
+
end
|
1146
|
+
end
|
1147
|
+
|
969
1148
|
class Wellness
|
970
1149
|
# @private
|
971
1150
|
class Representation < Google::Apis::Core::JsonRepresentation
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: google-apis-mybusinesslodging_v1
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.
|
4
|
+
version: 0.7.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Google LLC
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2022-01-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: google-apis-core
|
@@ -16,7 +16,7 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - ">="
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '0.
|
19
|
+
version: '0.4'
|
20
20
|
- - "<"
|
21
21
|
- !ruby/object:Gem::Version
|
22
22
|
version: 2.a
|
@@ -26,7 +26,7 @@ dependencies:
|
|
26
26
|
requirements:
|
27
27
|
- - ">="
|
28
28
|
- !ruby/object:Gem::Version
|
29
|
-
version: '0.
|
29
|
+
version: '0.4'
|
30
30
|
- - "<"
|
31
31
|
- !ruby/object:Gem::Version
|
32
32
|
version: 2.a
|
@@ -57,9 +57,9 @@ licenses:
|
|
57
57
|
- Apache-2.0
|
58
58
|
metadata:
|
59
59
|
bug_tracker_uri: https://github.com/googleapis/google-api-ruby-client/issues
|
60
|
-
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
61
|
-
documentation_uri: https://googleapis.dev/ruby/google-apis-mybusinesslodging_v1/v0.
|
62
|
-
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/
|
60
|
+
changelog_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-mybusinesslodging_v1/CHANGELOG.md
|
61
|
+
documentation_uri: https://googleapis.dev/ruby/google-apis-mybusinesslodging_v1/v0.7.0
|
62
|
+
source_code_uri: https://github.com/googleapis/google-api-ruby-client/tree/main/generated/google-apis-mybusinesslodging_v1
|
63
63
|
post_install_message:
|
64
64
|
rdoc_options: []
|
65
65
|
require_paths:
|
@@ -75,7 +75,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
75
75
|
- !ruby/object:Gem::Version
|
76
76
|
version: '0'
|
77
77
|
requirements: []
|
78
|
-
rubygems_version: 3.
|
78
|
+
rubygems_version: 3.3.4
|
79
79
|
signing_key:
|
80
80
|
specification_version: 4
|
81
81
|
summary: Simple REST client for My Business Lodging API V1
|