atipugin/telegram-bot-ruby

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

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Telegram
  module Bot
    module Types
      class UserProfilePhotos < Base
        attribute :total_count, Types::Integer
        attribute :photos, Types::Array.of(Types::Array.of(PhotoSize))
      end
    end
  end
end