Sha256: ce813e747e77b7d0292c1f72c3e14186c876fc664e10e9bfbc19ff248bfe4afc

Contents?: true

Size: 480 Bytes

Versions: 1

Compression:

Stored size: 480 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/objects'
require 'vk/schema/namespace'

module Vk
  module API
    class Friends < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class FriendsList < Vk::Schema::Object
        # @return [String] List title
        attribute :name, API::Types::Coercible::String
        # @return [Integer] List ID
        attribute :id, API::Types::Coercible::Int
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
vk-0.99.5.53.alpha lib/vk/api/friends/friends_list.rb