Class: Google::Apis::MybusinesslodgingV1::SustainabilityCertifications
- Inherits:
-
Object
- Object
- Google::Apis::MybusinesslodgingV1::SustainabilityCertifications
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/mybusinesslodging_v1/classes.rb,
lib/google/apis/mybusinesslodging_v1/representations.rb,
lib/google/apis/mybusinesslodging_v1/representations.rb
Overview
Sustainability certifications the hotel has been awarded.
Instance Attribute Summary collapse
-
#breeam_certification ⇒ String
BREEAM certification.
-
#breeam_certification_exception ⇒ String
BREEAM certification exception.
-
#eco_certifications ⇒ Array<Google::Apis::MybusinesslodgingV1::EcoCertification>
The eco certificates awarded to the hotel.
-
#leed_certification ⇒ String
LEED certification.
-
#leed_certification_exception ⇒ String
LEED certification exception.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SustainabilityCertifications
constructor
A new instance of SustainabilityCertifications.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SustainabilityCertifications
Returns a new instance of SustainabilityCertifications.
3879 3880 3881 |
# File 'lib/google/apis/mybusinesslodging_v1/classes.rb', line 3879 def initialize(**args) update!(**args) end |
Instance Attribute Details
#breeam_certification ⇒ String
BREEAM certification.
Corresponds to the JSON property breeamCertification
3855 3856 3857 |
# File 'lib/google/apis/mybusinesslodging_v1/classes.rb', line 3855 def breeam_certification @breeam_certification end |
#breeam_certification_exception ⇒ String
BREEAM certification exception.
Corresponds to the JSON property breeamCertificationException
3860 3861 3862 |
# File 'lib/google/apis/mybusinesslodging_v1/classes.rb', line 3860 def breeam_certification_exception @breeam_certification_exception end |
#eco_certifications ⇒ Array<Google::Apis::MybusinesslodgingV1::EcoCertification>
The eco certificates awarded to the hotel.
Corresponds to the JSON property ecoCertifications
3865 3866 3867 |
# File 'lib/google/apis/mybusinesslodging_v1/classes.rb', line 3865 def eco_certifications @eco_certifications end |
#leed_certification ⇒ String
LEED certification. Deprecated: this field is no longer populated. LEED
certification status is now provided directly by USGBC.
Corresponds to the JSON property leedCertification
3871 3872 3873 |
# File 'lib/google/apis/mybusinesslodging_v1/classes.rb', line 3871 def leed_certification @leed_certification end |
#leed_certification_exception ⇒ String
LEED certification exception. Deprecated: this field is no longer populated.
LEED certification status is now provided directly by USGBC.
Corresponds to the JSON property leedCertificationException
3877 3878 3879 |
# File 'lib/google/apis/mybusinesslodging_v1/classes.rb', line 3877 def leed_certification_exception @leed_certification_exception end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3884 3885 3886 3887 3888 3889 3890 |
# File 'lib/google/apis/mybusinesslodging_v1/classes.rb', line 3884 def update!(**args) @breeam_certification = args[:breeam_certification] if args.key?(:breeam_certification) @breeam_certification_exception = args[:breeam_certification_exception] if args.key?(:breeam_certification_exception) @eco_certifications = args[:eco_certifications] if args.key?(:eco_certifications) @leed_certification = args[:leed_certification] if args.key?(:leed_certification) @leed_certification_exception = args[:leed_certification_exception] if args.key?(:leed_certification_exception) end |