Sha256: c6605267733098d2f847bd86290397e139bca8a38824c564a3a634214e6f0fe3

Contents?: true

Size: 527 Bytes

Versions: 1

Compression:

Stored size: 527 Bytes

Contents

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

module Vk
  module API
    class Groups < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class MemberStatus < Vk::Schema::Object
        # @return [API::Base::BoolInt] Information whether user is a member of the group
        attribute :member, API::Base::BoolInt
        # @return [Integer] User ID
        attribute :user_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/groups/member_status.rb