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)


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

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

Instance Attribute Details

#completedInteger?

Returns the value of attribute completed.

Returns:

  • (Integer, nil)


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

def completed
  @completed
end

#failedInteger?

Returns the value of attribute failed.

Returns:

  • (Integer, nil)


600
601
602
# File 'sig/types.rbs', line 600

def failed
  @failed
end

#totalInteger?

Returns the value of attribute total.

Returns:

  • (Integer, nil)


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

def total
  @total
end