Sha256: fa965e5c7adffbc251829757a1b7b7739dc26e0c0e956a91410d15644706f73c
Contents?: true
Size: 942 Bytes
Versions: 1
Compression:
Stored size: 942 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Audio < Vk::Schema::Namespace module Methods # Deletes an audio album. class DeleteAlbum < Schema::Method # @!group Properties self.open = false self.method = 'audio.deleteAlbum' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :group_id ID of the community where the album is located.; # @option arguments [Integer] :album_id Album ID. # @return [Audio::Methods::DeleteAlbum] # @!group Arguments # @return [Integer] ID of the community where the album is located.; attribute :group_id, API::Types::Coercible::Int.optional # @return [Integer] Album ID. attribute :album_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/delete_album.rb |