UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

14 lines (13 loc) 298 B
/** * @example * { * page: 1, * per_page: 1 * } */ export interface ListCallsRequest { /** The page of results to fetch. Defaults to first page */ page?: number; /** How many results to display per page. Defaults to 25. Max 25. */ per_page?: number; }