lib/telegram/bot/types/user_profile_photos.rb



# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class UserProfilePhotos < Base
        attribute :total_count, Integer
        attribute :photos, Array[Array[PhotoSize]]
      end
    end
  end
end