Class: LiterLlm::BatchRequestCounts

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeBatchRequestCounts

Returns a new instance of BatchRequestCounts.

Parameters:

  • total: (Integer)
  • completed: (Integer)
  • failed: (Integer)


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

def initialize: (?total: Integer, ?completed: Integer, ?failed: Integer) -> void

Instance Attribute Details

#completedInteger (readonly)

Returns the value of attribute completed.

Returns:

  • (Integer)


80
81
82
# File 'sig/types.rbs', line 80

def completed
  @completed
end

#failedInteger (readonly)

Returns the value of attribute failed.

Returns:

  • (Integer)


81
82
83
# File 'sig/types.rbs', line 81

def failed
  @failed
end

#totalInteger (readonly)

Returns the value of attribute total.

Returns:

  • (Integer)


79
80
81
# File 'sig/types.rbs', line 79

def total
  @total
end