intercom-client
Version:
Official Node bindings to the Intercom API
23 lines (22 loc) • 566 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
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;
}
}
}