/** * Athena API * REST API for the Athena system * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { CanvasDomainMatch } from './CanvasDomainMatch'; /** * * @export * @interface CanvasDomainSearchResponse */ export interface CanvasDomainSearchResponse { /** * Top match when the model's confidence clears the threshold; null otherwise * @type {CanvasDomainMatch} * @memberof CanvasDomainSearchResponse */ bestGuess: CanvasDomainMatch | null; /** * Other plausible matches ordered by confidence * @type {Array} * @memberof CanvasDomainSearchResponse */ alternatives: Array; /** * Optional model reasoning explaining the ranking * @type {string} * @memberof CanvasDomainSearchResponse */ reasoning?: string; } /** * Check if a given object implements the CanvasDomainSearchResponse interface. */ export declare function instanceOfCanvasDomainSearchResponse(value: object): value is CanvasDomainSearchResponse; export declare function CanvasDomainSearchResponseFromJSON(json: any): CanvasDomainSearchResponse; export declare function CanvasDomainSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CanvasDomainSearchResponse; export declare function CanvasDomainSearchResponseToJSON(json: any): CanvasDomainSearchResponse; export declare function CanvasDomainSearchResponseToJSONTyped(value?: CanvasDomainSearchResponse | null, ignoreDiscriminator?: boolean): any;