Table of Contents

Class LemurQuestionAnswerResponse

Namespace
AssemblyAI.Lemur
Assembly
AssemblyAI.dll
public record LemurQuestionAnswerResponse : IEquatable<LemurQuestionAnswerResponse>
Inheritance
LemurQuestionAnswerResponse
Implements
Inherited Members

Properties

RequestId

The ID of the LeMUR request

[JsonPropertyName("request_id")]
public required string RequestId { get; set; }

Property Value

string

Response

The answers generated by LeMUR and their questions

[JsonPropertyName("response")]
public IEnumerable<LemurQuestionAnswer> Response { get; set; }

Property Value

IEnumerable<LemurQuestionAnswer>

Usage

The usage numbers for the LeMUR request

[JsonPropertyName("usage")]
public required LemurUsage Usage { get; set; }

Property Value

LemurUsage

Methods

ToString()

Returns a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.