Sha256: 438313c6f2a44d26bfd18a8693c754860bfea2aebe07e8227e73ed159327a973
Contents?: true
Size: 833 Bytes
Versions: 1
Compression:
Stored size: 833 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Audio < Vk::Schema::Namespace module Methods # Returns information about audio files by their IDs. class GetById < Schema::Method # @!group Properties self.open = false self.method = 'audio.getById' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Array] :audios Audio file IDs, in the following format:; "\$1owner_id\$1_\$1audio_id\$1" # @return [Audio::Methods::GetById] # @!group Arguments # @return [Array] Audio file IDs, in the following format:; "\$1owner_id\$1_\$1audio_id\$1" attribute :audios, API::Types::Coercible::Array.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_by_id.rb |