Sha256: 063d093a70536bb4b101d46ac89104d6698ce52c513d008e20e2d7ff9318ff5a
Contents?: true
Size: 941 Bytes
Versions: 1
Compression:
Stored size: 941 Bytes
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Video < Vk::Schema::Namespace module Methods # Returns a list of tags on a video. class GetTags < Schema::Method # @!group Properties self.open = false self.method = 'video.getTags' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :owner_id ID of the user or community that owns the video. # @option arguments [Integer] :video_id Video ID. # @return [Video::Methods::GetTags] # @!group Arguments # @return [Integer] ID of the user or community that owns the video. attribute :owner_id, API::Types::Coercible::Int.optional # @return [Integer] Video ID. attribute :video_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/get_tags.rb |