Class: Google::Apis::StreetviewpublishV1::Level
- Inherits:
-
Object
- Object
- Google::Apis::StreetviewpublishV1::Level
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/streetviewpublish_v1/classes.rb,
lib/google/apis/streetviewpublish_v1/representations.rb,
lib/google/apis/streetviewpublish_v1/representations.rb
Overview
Level information containing level number and its corresponding name.
Instance Attribute Summary collapse
-
#name ⇒ String
Required.
-
#number ⇒ Float
Optional.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Level
constructor
A new instance of Level.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Level
Returns a new instance of Level.
341 342 343 |
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 341 def initialize(**args) update!(**args) end |
Instance Attribute Details
#name ⇒ String
Required. A name assigned to this Level, restricted to 3 characters. Consider
how the elevator buttons would be labeled for this level if there was an
elevator.
Corresponds to the JSON property name
332 333 334 |
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 332 def name @name end |
#number ⇒ Float
Optional. Floor number, used for ordering. 0 indicates the ground level, 1
indicates the first level above ground level, -1 indicates the first level
under ground level. Non-integer values are OK.
Corresponds to the JSON property number
339 340 341 |
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 339 def number @number end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
346 347 348 349 |
# File 'lib/google/apis/streetviewpublish_v1/classes.rb', line 346 def update!(**args) @name = args[:name] if args.key?(:name) @number = args[:number] if args.key?(:number) end |