Sha256: 27633e78e7fcfaec1d7119a05a9f8865457ad15f51e8c9dd68a6a701565a36a7
Contents?: true
Size: 1.08 KB
Versions: 1
Compression:
Stored size: 1.08 KB
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Photos < Vk::Schema::Namespace module Methods # Removes a tag from a photo. class RemoveTag < Schema::Method # @!group Properties self.open = false self.method = 'photos.removeTag' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :owner_id ID of the user or community that owns the photo. # @option arguments [Integer] :photo_id Photo ID. # @option arguments [Integer] :tag_id Tag ID. # @return [Photos::Methods::RemoveTag] # @!group Arguments # @return [Integer] ID of the user or community that owns the photo. attribute :owner_id, API::Types::Coercible::Int.optional # @return [Integer] Photo ID. attribute :photo_id, API::Types::Coercible::Int.optional # @return [Integer] Tag ID. attribute :tag_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/photos/methods/remove_tag.rb |