Sha256: cff302c17c6ae6e6cce989b697af16238ab72bdbdea463f28f2ba658c0f9d784
Contents?: true
Size: 1011 Bytes
Versions: 1
Compression:
Stored size: 1011 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 videos with tags that have not been viewed. class GetNewTags < Schema::Method # @!group Properties self.open = false self.method = 'video.getNewTags' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [Integer] :offset Offset needed to return a specific subset of videos. # @option arguments [Integer] :count Number of videos to return. # @return [Video::Methods::GetNewTags] # @!group Arguments # @return [Integer] Offset needed to return a specific subset of videos. attribute :offset, API::Types::Coercible::Int.optional # @return [Integer] Number of videos to return. attribute :count, 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_new_tags.rb |