import type * as Pinnacle from "../index.mjs"; /** * Successful `POST /forms/send` response. * * - When `to` was provided in the request, the message was dispatched: `submission.to` echoes that recipient and `message_id` is the id of the outbound SMS/RCS that carried the URL. * - When `to` was omitted, no message was sent: both `submission.to` and `message_id` are `null` and only the submission URL is returned. */ export interface SendFormResult { form: Pinnacle.Form; submission: Pinnacle.FormSubmission; /** Id of the outbound SMS/RCS message that delivered the URL. Null when the send was URL-only (no `to`). */ message_id: string | null; }