UNPKG

node-zendesk

Version:

A trusted Zendesk API client library for Node.js and the browser, lovingly maintained for over 10 years.

15 lines (14 loc) 576 B
export class UserSegments extends Client { constructor(options: any); jsonAPINames: string[]; list(): Promise<any[]>; listApplicable(): Promise<any[]>; listByUser(userID: any): Promise<any[]>; show(userSegmentID: any): Promise<NodeModule>; listSections(userSegmentID: any): Promise<any[]>; listTopics(userSegmentID: any): Promise<any[]>; create(userSegment: any): Promise<NodeModule>; update(userSegmentID: any, userSegment: any): Promise<NodeModule>; delete(userSegmentID: any): Promise<any>; } import { Client } from "../client";