/** * Simulates when a user presses an `openUrl` button. */ export interface UserButtonPressOpenUrl { /** Name of the button that you want to press. */ title: string; /** Metadata attached to the button. */ metadata?: string; /** Destination URL of the tapped button. */ payload?: string; }