atipugin/telegram-bot-ruby

View on GitHub
lib/telegram/bot/types/chat_location.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class ChatLocation < Base
        attribute :location, Location
        attribute :address, Types::String
      end
    end
  end
end