Sha256: f948bb17fe33887b7375f8527de90a812ead33671c400f36870781dd64d17400
Contents?: true
Size: 1.23 KB
Versions: 1
Compression:
Stored size: 1.23 KB
Contents
# frozen_string_literal: true require 'vk/api/methods' module Vk module API class Video < Vk::Schema::Namespace module Methods # Returns a separate catalog section class GetCatalogSection < Schema::Method # @!group Properties self.open = true self.method = 'video.getCatalogSection' # @method initialize(arguments) # @param [Hash] arguments # @option arguments [String] :section_id 'id' value returned with a block by the '' method. # @option arguments [String] :from 'next' value returned with a block by the '' method. # @option arguments [Integer] :count number of blocks to return. # @return [Video::Methods::GetCatalogSection] # @!group Arguments # @return [String] 'id' value returned with a block by the '' method. attribute :section_id, API::Types::Coercible::String.optional # @return [String] 'next' value returned with a block by the '' method. attribute :from, API::Types::Coercible::String.optional # @return [Integer] number of blocks 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_catalog_section.rb |