intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 407 B
TypeScript
/**
* This file was auto-generated by Fern from our API Definition.
*/
import * as Intercom from "../index";
/**
* A list of admins associated with a given workspace.
*/
export interface AdminList {
/** String representing the object's type. Always has the value `admin.list`. */
type: "admin.list";
/** A list of admins associated with a given workspace. */
admins: Intercom.Admin[];
}