UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

14 lines (13 loc) 303 B
/** * @example * { * per_page: 1, * starting_after: "starting_after" * } */ export interface ListConversationsRequest { /** How many results per page */ per_page?: number; /** String used to get the next page of conversations. */ starting_after?: string; }