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)


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

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

Instance Attribute Details

#completedInteger (readonly)

Returns the value of attribute completed.

Returns:

  • (Integer)


609
610
611
# File 'sig/types.rbs', line 609

def completed
  @completed
end

#failedInteger (readonly)

Returns the value of attribute failed.

Returns:

  • (Integer)


610
611
612
# File 'sig/types.rbs', line 610

def failed
  @failed
end

#totalInteger (readonly)

Returns the value of attribute total.

Returns:

  • (Integer)


608
609
610
# File 'sig/types.rbs', line 608

def total
  @total
end