Sha256: 683a6ab527982e1ad3a3749b8b10d38c94e2a70eef489bb483626ecf998db103

Contents?: true

Size: 618 Bytes

Versions: 1

Compression:

Stored size: 618 Bytes

Contents

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

module Vk
  module API
    class Oauth < Vk::Schema::Namespace
      # @see https://github.com/VKCOM/vk-api-schema/blob/master/objects.json
      class Error < Vk::Schema::Object
        # @return [String] Error type
        attribute :error, API::Types::Coercible::String
        # @return [String] Error description
        attribute :error_description, API::Types::Coercible::String
        # @return [String] URI for validation
        attribute :redirect_uri, 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/oauth/error.rb