Class: Xberg::ExtractionErrorItem

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeExtractionErrorItem

Returns a new instance of ExtractionErrorItem.

Parameters:

  • index: (Integer)
  • code: (Integer)
  • error_type: (String)
  • source: (String)
  • message: (String)


201
# File 'sig/types.rbs', line 201

def initialize: (index: Integer, code: Integer, error_type: String, source: String, message: String) -> void

Instance Attribute Details

#codeInteger (readonly)

Returns the value of attribute code.

Returns:

  • (Integer)


196
197
198
# File 'sig/types.rbs', line 196

def code
  @code
end

#error_typeString (readonly)

Returns the value of attribute error_type.

Returns:

  • (String)


197
198
199
# File 'sig/types.rbs', line 197

def error_type
  @error_type
end

#indexInteger (readonly)

Returns the value of attribute index.

Returns:

  • (Integer)


195
196
197
# File 'sig/types.rbs', line 195

def index
  @index
end

#messageString (readonly)

Returns the value of attribute message.

Returns:

  • (String)


199
200
201
# File 'sig/types.rbs', line 199

def message
  @message
end

#sourceString (readonly)

Returns the value of attribute source.

Returns:

  • (String)


198
199
200
# File 'sig/types.rbs', line 198

def source
  @source
end