Sha256: 3182b29ab5a453bd77700b3c08f70d7f50e2a5a105b4752375f49f4c3048b328
Contents?: true
Size: 698 Bytes
Versions: 1
Compression:
Stored size: 698 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 Requests < Vk::Schema::Object # @return [Integer] User ID attribute :user_id, API::Types::Coercible::Int.optional # @return [String] ID of the user by whom friend has been suggested attribute :from, API::Types::Coercible::String.optional # @return [Object] @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json attribute :mutual, API::Types::Coercible::Hash.optional 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/requests.rb |