Sha256: 53a924edb6afc88439f6229bf5f3676698ea9757ec487eb91f5ed98db320b56c

Contents?: true

Size: 499 Bytes

Versions: 1

Compression:

Stored size: 499 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 Region < Vk::Schema::Object
        # @return [Integer] Region ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [String] Region 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/region.rb