Sha256: 03e1b80aa49ff58575adcc9ba93b468aa791167e196ca37d875d3c04acd59681
Contents?: true
Size: 606 Bytes
Versions: 1
Compression:
Stored size: 606 Bytes
Contents
# frozen_string_literal: true require 'vk/api/objects' require 'vk/schema/namespace' module Vk module API class Docs < Vk::Schema::Namespace # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json class DocTypes < Vk::Schema::Object # @return [Integer] Doc type ID attribute :id, API::Types::Coercible::Int.optional # @return [String] Doc type title attribute :title, API::Types::Coercible::String.optional # @return [Integer] Number of docs attribute :count, API::Types::Coercible::Int.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/docs/doc_types.rb |