/** * Simulates when a user presses a `trigger` button. */ export interface UserButtonPressTrigger { /** Name of the button that you want to press. */ title: string; /** Metadata attached to the button. */ metadata?: string; /** Button's postback payload. */ payload?: string; }