Class: Telegram::Bot::Types::StoryAreaTypeLocation

Inherits:
Base
  • Object
show all
Defined in:
sig/telegram/bot/types/story_area_type_location.rbs

Instance Attribute Summary collapse

Attributes inherited from Base

#attributes

Class Method Summary collapse

Methods included from Compactable

#to_compact_hash, #to_json

Methods included from PatternMatching

#deconstruct_keys

Instance Attribute Details

#addressLocationAddress? (readonly)

Returns the value of attribute address.

Returns:



11
12
13
# File 'sig/telegram/bot/types/story_area_type_location.rbs', line 11

def address
  @address
end

#latitudeFloat (readonly)

Returns the value of attribute latitude.

Returns:

  • (Float)


9
10
11
# File 'sig/telegram/bot/types/story_area_type_location.rbs', line 9

def latitude
  @latitude
end

#longitudeFloat (readonly)

Returns the value of attribute longitude.

Returns:

  • (Float)


10
11
12
# File 'sig/telegram/bot/types/story_area_type_location.rbs', line 10

def longitude
  @longitude
end

#typeString (readonly)

Returns the value of attribute type.

Returns:

  • (String)


8
9
10
# File 'sig/telegram/bot/types/story_area_type_location.rbs', line 8

def type
  @type
end

Class Method Details

.new(type:, latitude:, longitude:, address:) ⇒ instance .new(attributes) ⇒ instance

Overloads:

  • .new(type:, latitude:, longitude:, address:) ⇒ instance

    Parameters:

    • type: (String)
    • latitude: (Float)
    • longitude: (Float)
    • address: (LocationAddress)

    Returns:

    • (instance)
  • .new(attributes) ⇒ instance

    Parameters:

    • attributes (Hash[Symbol | String, untyped])

    Returns:

    • (instance)


6
7
# File 'sig/telegram/bot/types/story_area_type_location.rbs', line 6

def self.new: (?type: String, latitude: Float, longitude: Float, ?address: LocationAddress) -> instance
| (?Hash[Symbol | String, untyped] attributes) -> instance