Sha256: 441886071b09550332e0b1131cf6ec93c23c25fc82a6c81a9557b2208099c50b
Contents?: true
Size: 949 Bytes
Versions: 1
Compression:
Stored size: 949 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Video < Vk::Schema::Namespace module Methods # Deletes a video album. class DeleteAlbum < Schema::Method # @!group Properties self.open = false self.method = 'video.deleteAlbum' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :group_id Community ID (if the album is owned by a community). # @option arguments [Integer] :album_id Album ID. # @return [Video::Methods::DeleteAlbum] # @!group Arguments # @return [Integer] Community ID (if the album is owned by a community). 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/video/methods/delete_album.rb |