UNPKG

intercom-client

Version:

[![fern shield](https://img.shields.io/badge/%F0%9F%8C%BF-Built%20with%20Fern-brightgreen)](https://buildwithfern.com?utm_source=github&utm_medium=github&utm_campaign=readme&utm_source=https%3A%2F%2Fgithub.com%2Fintercom%2Fintercom-node) [![npm shield](ht

28 lines (27 loc) 880 B
/** * This file was auto-generated by Fern from our API Definition. */ /** * The API will return an Error List for a failed request, which will contain one or more Error objects. */ export interface Error_ { /** The type is error.list */ type: string; /** */ request_id?: string; /** An array of one or more error objects */ errors: Error_.Errors.Item[]; } export declare namespace Error_ { type Errors = Errors.Item[]; namespace Errors { interface Item { /** A string indicating the kind of error, used to further qualify the HTTP response code */ code: string; /** Optional. Human readable description of the error. */ message?: string; /** Optional. Used to identify a particular field or query parameter that was in error. */ field?: string; } } }