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)


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

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)


1002
1003
1004
# File 'sig/types.rbs', line 1002

def code
  @code
end

#error_typeString (readonly)

Returns the value of attribute error_type.

Returns:

  • (String)


1003
1004
1005
# File 'sig/types.rbs', line 1003

def error_type
  @error_type
end

#indexInteger (readonly)

Returns the value of attribute index.

Returns:

  • (Integer)


1001
1002
1003
# File 'sig/types.rbs', line 1001

def index
  @index
end

#messageString (readonly)

Returns the value of attribute message.

Returns:

  • (String)


1005
1006
1007
# File 'sig/types.rbs', line 1005

def message
  @message
end

#sourceString (readonly)

Returns the value of attribute source.

Returns:

  • (String)


1004
1005
1006
# File 'sig/types.rbs', line 1004

def source
  @source
end