Sha256: bd84f485699dd8c777ffe0ea2cfd1ebcba5b051e76465ad0032a70f430713e32
Contents?: true
Size: 688 Bytes
Versions: 1
Compression:
Stored size: 688 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Notes < Vk::Schema::Namespace module Methods # Deletes a note of the current user. class Delete < Schema::Method # @!group Properties self.open = false self.method = 'notes.delete' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :note_id Note ID. # @return [Notes::Methods::Delete] # @!group Arguments # @return [Integer] Note ID. attribute :note_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/notes/methods/delete.rb |