/** * Simulates when a user presses a `call` button. */ export interface UserButtonPressCall { /** Name of the button that you want to press. */ title: string; /** Metadata attached to the button. */ metadata?: string; /** Destination phone number in E.164 format. */ payload?: string; }