Sha256: 7184675e069ec76b6b7e1940eeb84423e215f9e777cf885fce3fc366612b2e83

Contents?: true

Size: 1.29 KB

Versions: 1

Compression:

Stored size: 1.29 KB

Contents

# frozen_string_literal: true
require 'vk/api/methods'

module Vk
  module API
    class Fave < Vk::Schema::Namespace
      module Methods
        # Returns a list of videos that the current user has liked.;
        class GetVideos < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'fave.getVideos'

          # @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.
          #   @option arguments [Boolean] :extended Return an additional information about videos. Also returns all owners profiles and groups.
          #   @return [Fave::Methods::GetVideos]

          # @!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
          # @return [Boolean] Return an additional information about videos. Also returns all owners profiles and groups.
          attribute :extended, API::Types::Bool.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/fave/methods/get_videos.rb