Sha256: 5a73f3f80e68a379e04010d16446b2d9b03497926b98d68f858caa3ff316629c

Contents?: true

Size: 776 Bytes

Versions: 1

Compression:

Stored size: 776 Bytes

Contents

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

module Vk
  module API
    class Pages < Vk::Schema::Namespace
      module Methods
        # Returns a list of wiki pages in a group.
        class GetTitles < Schema::Method
          # @!group Properties

          self.open = false
          self.method = 'pages.getTitles'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :group_id ID of the community that owns the wiki page.
          #   @return [Pages::Methods::GetTitles]

          # @!group Arguments

          # @return [Integer] ID of the community that owns the wiki page.
          attribute :group_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/pages/methods/get_titles.rb