@yext/search-core
Version:
Typescript Networking Library for the Yext Search API
25 lines (24 loc) • 705 B
TypeScript
import { ErrorType } from './ErrorType';
/**
* Error information from when a vertical fails to return results.
*
* @public
*/
export interface FailedVertical {
/** The vertical key associated with the failed vertical. */
verticalKey: string;
/** {@inheritDoc ErrorType} */
errorType: ErrorType;
/** The duration of the query in milliseconds. */
queryDurationMillis: number;
/** Detailed information about the error. */
details: {
/**
* An HTTP response status code indicating the completion status of
* the request.
*/
responseCode: number;
/** A message explaining the error. */
description: string;
};
}