Class: Google::Apis::StreetviewpublishV1::Level

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/streetviewpublish_v1/classes.rb,
generated/google/apis/streetviewpublish_v1/representations.rb,
generated/google/apis/streetviewpublish_v1/representations.rb

Overview

Level information containing level number and its corresponding name.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Level

Returns a new instance of Level.



206
207
208
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 206

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#nameString

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

Returns:

  • (String)


197
198
199
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 197

def name
  @name
end

#numberFloat

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

Returns:

  • (Float)


204
205
206
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 204

def number
  @number
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



211
212
213
214
# File 'generated/google/apis/streetviewpublish_v1/classes.rb', line 211

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @number = args[:number] if args.key?(:number)
end