Sha256: ebe6c9fdf7cbd18d590c2f2653dc62c4b19641252d8c1194d8aebdbdda568a51

Contents?: true

Size: 762 Bytes

Versions: 1

Compression:

Stored size: 762 Bytes

Contents

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

module Vk
  module API
    class Database < Vk::Schema::Namespace
      module Methods
        # Returns a list of school classes specified for the country.
        class GetSchoolClasses < Schema::Method
          # @!group Properties

          self.open = true
          self.method = 'database.getSchoolClasses'

          # @method initialize(arguments)
          #   @param [Hash] arguments
          #   @option arguments [Integer] :country_id Country ID.
          #   @return [Database::Methods::GetSchoolClasses]

          # @!group Arguments

          # @return [Integer] Country ID.
          attribute :country_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/database/methods/get_school_classes.rb