Sha256: cb13cbec23a1a875c6e557116f76d64970a8c4e8396f1b945bc6096231768369

Contents?: true

Size: 617 Bytes

Versions: 1

Compression:

Stored size: 617 Bytes

Contents

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

module Vk
  module API
    class Places < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class Types < Vk::Schema::Object
        # @return [Integer] Place type ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [Integer] Place type title
        attribute :title, API::Types::Coercible::Int.optional
        # @return [String] URL of the place's icon
        attribute :icon, 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/places/types.rb