Sha256: 3ef2e052dc78a56b2045a669b8eccad5bd363d2f4d7e55f9cc9054623a990032

Contents?: true

Size: 938 Bytes

Versions: 1

Compression:

Stored size: 938 Bytes

Contents

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

module Vk
  module API
    class Market < Vk::Schema::Namespace
      module Methods
        # Deletes a collection of items.
        class DeleteAlbum < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'market.deleteAlbum'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :owner_id ID of an collection owner community.
          #   @option arguments [Integer] :album_id Collection ID.
          #   @return [Market::Methods::DeleteAlbum]

          # @!group Arguments

          # @return [Integer] ID of an collection owner community.
          attribute :owner_id, API::Types::Coercible::Int.optional
          # @return [Integer] Collection 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/market/methods/delete_album.rb