Sha256: 6d0ea1b17eb438d46d1a6841e180af7058c9629934a1af44aa7ca8eeb071fb51

Contents?: true

Size: 870 Bytes

Versions: 1

Compression:

Stored size: 870 Bytes

Contents

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

module Vk
  module API
    class Account < Vk::Schema::Namespace
      module Methods
        # Gets settings of the user in this application.
        class GetAppPermissions < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'account.getAppPermissions'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :user_id User ID whose settings information shall be got. By default: current user.
          #   @return [Account::Methods::GetAppPermissions]

          # @!group Arguments

          # @return [Integer] User ID whose settings information shall be got. By default: current user.
          attribute :user_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/account/methods/get_app_permissions.rb