intercom-client
Version:
Official Node bindings to the Intercom API
10 lines (9 loc) • 319 B
text/typescript
import type * as Intercom from "../index.mjs";
/**
* You can create an phone switch
*/
export interface CreatePhoneSwitchRequest {
/** Phone number in E.164 format, that will receive the SMS to continue the conversation in the Messenger. */
phone: string;
custom_attributes?: Intercom.CustomAttributes;
}