Sha256: 84758f35df61b3462c09ef253540157d7662ea77117c1d8fb1593abac8b8b741

Contents?: true

Size: 500 Bytes

Versions: 1

Compression:

Stored size: 500 Bytes

Contents

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

module Vk
  module API
    class Users < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class Relative < Vk::Schema::Object
        # @return [Integer] Relative ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [String] Relative type
        attribute :type, API::Types::Coercible::String.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/users/relative.rb