intercom-client
Version:
Official Node bindings to the Intercom API
20 lines (19 loc) • 493 B
TypeScript
export interface NotFoundErrorBody {
/** The type is error.list */
type: string;
/** */
request_id?: string;
/** An array of one or more error objects */
errors: NotFoundErrorBody.Errors.Item[];
}
export declare namespace NotFoundErrorBody {
type Errors = Errors.Item[];
namespace Errors {
interface Item {
/** ticket_not_found */
code: string;
/** Ticket not found */
message?: string;
}
}
}