Sha256: 8227c771c67266856f5a17ba598d6f0db1216c44115191353c6ba55e6fab9d1f

Contents?: true

Size: 824 Bytes

Versions: 1

Compression:

Stored size: 824 Bytes

Contents

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

module Vk
  module API
    class Ads < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class TargSuggestionsSchools < Vk::Schema::Object
        # @return [Integer] School ID
        attribute :id, API::Types::Coercible::Int.optional
        # @return [String] School title
        attribute :name, API::Types::Coercible::String.optional
        # @return [String] Full school title
        attribute :desc, API::Types::Coercible::String.optional
        # @return [String] School type
        attribute :type, API::Types::Coercible::String.optional
        # @return [String] City name
        attribute :parent, 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/ads/targ_suggestions_schools.rb