class Google::Apis::MybusinesslodgingV1::LivingAreaLayout
Information about the layout of the living area.
Attributes
Balcony. An outdoor platform attached to a building and surrounded by a short wall, fence or other safety railing. The balcony is accessed through a door in a guestroom or suite and is for use by the guest staying in that room. May or may not include seating or outdoor furniture. Is not located on the ground floor. Also lanai. Corresponds to the JSON property `balcony` @return [Boolean]
Balcony. An outdoor platform attached to a building and surrounded by a short wall, fence or other safety railing. The balcony is accessed through a door in a guestroom or suite and is for use by the guest staying in that room. May or may not include seating or outdoor furniture. Is not located on the ground floor. Also lanai. Corresponds to the JSON property `balcony` @return [Boolean]
Balcony exception. Corresponds to the JSON property `balconyException` @return [String]
Living area sq meters. The measurement in meters of the area of a guestroom's living space. Corresponds to the JSON property `livingAreaSqMeters` @return [Float]
Living area sq meters exception. Corresponds to the JSON property `livingAreaSqMetersException` @return [String]
Loft. A three-walled upper area accessed by stairs or a ladder that overlooks the lower area of a room. Corresponds to the JSON property `loft` @return [Boolean]
Loft. A three-walled upper area accessed by stairs or a ladder that overlooks the lower area of a room. Corresponds to the JSON property `loft` @return [Boolean]
Loft exception. Corresponds to the JSON property `loftException` @return [String]
Non smoking. A guestroom in which the smoking of cigarettes, cigars and pipes is prohibited. Corresponds to the JSON property `nonSmoking` @return [Boolean]
Non smoking. A guestroom in which the smoking of cigarettes, cigars and pipes is prohibited. Corresponds to the JSON property `nonSmoking` @return [Boolean]
Non smoking exception. Corresponds to the JSON property `nonSmokingException` @return [String]
Patio. A paved, outdoor area with seating attached to and accessed through a ground-floor guestroom for use by the occupants of the guestroom. Corresponds to the JSON property `patio` @return [Boolean]
Patio. A paved, outdoor area with seating attached to and accessed through a ground-floor guestroom for use by the occupants of the guestroom. Corresponds to the JSON property `patio` @return [Boolean]
Patio exception. Corresponds to the JSON property `patioException` @return [String]
Stairs. There are steps leading from one level or story to another in the unit. Corresponds to the JSON property `stairs` @return [Boolean]
Stairs. There are steps leading from one level or story to another in the unit. Corresponds to the JSON property `stairs` @return [Boolean]
Stairs exception. Corresponds to the JSON property `stairsException` @return [String]
Public Class Methods
# File lib/google/apis/mybusinesslodging_v1/classes.rb, line 2077 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/mybusinesslodging_v1/classes.rb, line 2082 def update!(**args) @balcony = args[:balcony] if args.key?(:balcony) @balcony_exception = args[:balcony_exception] if args.key?(:balcony_exception) @living_area_sq_meters = args[:living_area_sq_meters] if args.key?(:living_area_sq_meters) @living_area_sq_meters_exception = args[:living_area_sq_meters_exception] if args.key?(:living_area_sq_meters_exception) @loft = args[:loft] if args.key?(:loft) @loft_exception = args[:loft_exception] if args.key?(:loft_exception) @non_smoking = args[:non_smoking] if args.key?(:non_smoking) @non_smoking_exception = args[:non_smoking_exception] if args.key?(:non_smoking_exception) @patio = args[:patio] if args.key?(:patio) @patio_exception = args[:patio_exception] if args.key?(:patio_exception) @stairs = args[:stairs] if args.key?(:stairs) @stairs_exception = args[:stairs_exception] if args.key?(:stairs_exception) end