Sha256: 8290b65b7f3596e793bfcd05aafb038fbaebc7204f7b7ffd361ca34c8ea9dcc7
Contents?: true
Size: 879 Bytes
Versions: 1
Compression:
Stored size: 879 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Audio < Vk::Schema::Namespace module Methods # Returns the total number of audio files on a user or community page. class GetCount < Schema::Method # @!group Properties self.open = false self.method = 'audio.getCount' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :owner_id ID of the user or community that owns the audio files. By default, current user ID. # @return [Audio::Methods::GetCount] # @!group Arguments # @return [Integer] ID of the user or community that owns the audio files. By default, current user ID. attribute :owner_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/audio/methods/get_count.rb |