Sha256: 61daec85d93e8a920d3bc8ed4a634e745e8e93a0c2399eee477924c68ca3b870

Contents?: true

Size: 492 Bytes

Versions: 1

Compression:

Stored size: 492 Bytes

Contents

# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class WebhookInfo < Base
        attribute :url, String
        attribute :has_custom_certificate, Boolean
        attribute :pending_update_count, Integer
        attribute :ip_address, String
        attribute :last_error_date, Integer
        attribute :last_error_message, String
        attribute :max_connections, Integer
        attribute :allowed_updates, Array.of(String)
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
telegram-bot-types-0.7.0 lib/telegram/bot/types/webhook_info.rb