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)


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

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

Instance Attribute Details

#completedInteger?

Returns the value of attribute completed.

Returns:

  • (Integer, nil)


596
597
598
# File 'sig/types.rbs', line 596

def completed
  @completed
end

#failedInteger?

Returns the value of attribute failed.

Returns:

  • (Integer, nil)


597
598
599
# File 'sig/types.rbs', line 597

def failed
  @failed
end

#totalInteger?

Returns the value of attribute total.

Returns:

  • (Integer, nil)


595
596
597
# File 'sig/types.rbs', line 595

def total
  @total
end