Sha256: b128bfa0937b425420db7af745ff663ff418c049e01793a5919b82db5302934b

Contents?: true

Size: 511 Bytes

Versions: 1

Compression:

Stored size: 511 Bytes

Contents

# frozen_string_literal: true
require 'vk/api/objects'
require 'vk/schema/namespace'

module Vk
  module API
    class Database < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class University < Vk::Schema::Object
        # @return [Integer] University ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [String] University title
        attribute :title, API::Types::Coercible::String.optional
      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/university.rb