Class: Vk::API::Base::Error

Inherits:
Schema::Object show all
Defined in:
lib/vk/api/base/error.rb

Overview

Instance Method Summary collapse

Instance Method Details

#error_codeInteger

Returns Error code.

Returns:

  • (Integer)

    Error code



11
# File 'lib/vk/api/base/error.rb', line 11

attribute :error_code, API::Types::Coercible::Int.optional.default(nil)

#error_msgString

Returns Error message.

Returns:

  • (String)

    Error message



13
# File 'lib/vk/api/base/error.rb', line 13

attribute :error_msg, API::Types::Coercible::String.optional.default(nil)

#request_paramsArray



15
# File 'lib/vk/api/base/error.rb', line 15

attribute :request_params, API::Types::Coercible::Array.member(API::Base::RequestParam).optional.default(nil)