atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class ProximityAlertTriggered < Base
        attribute :traveler, User
        attribute :watcher, User
        attribute :distance, Types::Integer
      end
    end
  end
end