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)


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

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)


171
172
173
# File 'sig/types.rbs', line 171

def code
  @code
end

#error_typeString (readonly)

Returns the value of attribute error_type.

Returns:

  • (String)


172
173
174
# File 'sig/types.rbs', line 172

def error_type
  @error_type
end

#indexInteger (readonly)

Returns the value of attribute index.

Returns:

  • (Integer)


170
171
172
# File 'sig/types.rbs', line 170

def index
  @index
end

#messageString (readonly)

Returns the value of attribute message.

Returns:

  • (String)


174
175
176
# File 'sig/types.rbs', line 174

def message
  @message
end

#sourceString (readonly)

Returns the value of attribute source.

Returns:

  • (String)


173
174
175
# File 'sig/types.rbs', line 173

def source
  @source
end