intercom-client
Version:
Official Node bindings to the Intercom API
27 lines (26 loc) • 707 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../../../index";
/**
* Paginated Response
*/
export interface PaginatedResponse {
/** The type of object */
type?: PaginatedResponse.Type;
pages?: Intercom.unstable.CursorPages;
/** A count of the total number of objects. */
total_count?: number;
/** An array of Objects */
data?: Intercom.unstable.PaginatedResponseDataItem[];
}
export declare namespace PaginatedResponse {
/**
* The type of object
*/
type Type = "list" | "conversation.list";
const Type: {
readonly List: "list";
readonly ConversationList: "conversation.list";
};
}