Class: Cohere::Transcribe::ASR::BatchExecutionResult

Inherits:
Data
  • Object
show all
Defined in:
lib/cohere/transcribe/asr/batching.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#errorsObject (readonly)

Returns the value of attribute errors

Returns:

  • (Object)

    the current value of errors



266
267
268
# File 'lib/cohere/transcribe/asr/batching.rb', line 266

def errors
  @errors
end

#telemetryObject (readonly)

Returns the value of attribute telemetry

Returns:

  • (Object)

    the current value of telemetry



266
267
268
# File 'lib/cohere/transcribe/asr/batching.rb', line 266

def telemetry
  @telemetry
end

#valuesObject (readonly)

Returns the value of attribute values

Returns:

  • (Object)

    the current value of values



266
267
268
# File 'lib/cohere/transcribe/asr/batching.rb', line 266

def values
  @values
end

Instance Method Details

#success?Boolean

Returns:

  • (Boolean)


267
268
269
# File 'lib/cohere/transcribe/asr/batching.rb', line 267

def success?
  errors.all?(&:nil?)
end