UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

19 lines 478 B
export type SubscriptionObject = { type: 'subscription'; id: string; state: SubscriptionState; default_translation: TranslationObject; translations: TranslationObject[]; consent_type: 'opt_out'; }; export declare enum SubscriptionState { ARCHIVED = "archived", DRAFT = "draft", LIVE = "live" } export type TranslationObject = { name: string; description: string; locale: string; }; //# sourceMappingURL=subscription.types.d.ts.map