Interface AlloraGetInferenceByTopicIdResponse

interface AlloraGetInferenceByTopicIdResponse {
    code?: string;
    inference?: AlloraInference;
    message?: string;
    status: "error" | "success";
    topicId?: number;
}

Properties

code?: string
inference?: AlloraInference
message?: string
status: "error" | "success"
topicId?: number