Sha256: 1a340dd5277e1e703b3bac5715b7d072313493337abf6179764b0fbe9b54d254

Contents?: true

Size: 788 Bytes

Versions: 1

Compression:

Stored size: 788 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/methods'

module Vk
  module API
    class Groups < Vk::Schema::Namespace
      module Methods
        # Returns Callback API confirmation code for the community.
        class GetCallbackConfirmationCode < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'groups.getCallbackConfirmationCode'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :group_id Community ID.
          #   @return [Groups::Methods::GetCallbackConfirmationCode]

          # @!group Arguments

          # @return [Integer] Community ID.
          attribute :group_id, API::Types::Coercible::Int.optional
        end
      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/methods/get_callback_confirmation_code.rb