/** * Response containing details about the scheduled blast. */ export interface BlastDetails { /** Unique identifier for the blast. This identifier is a string that always begins with the prefix `blast_`, for example: `blast_1234567890`. */ blastId: string; /** The audience ID the blast was sent to. This identifier is a string that always begins with the prefix `aud_`, for example: `aud_abc123`. */ audienceId: string; /** Total number of recipients in the audience. */ totalRecipients: number; /** Total number of messages to be sent. */ totalMessages: number; /** Total number of message segments across all messages. */ totalSegments: number; /** Total cost of the blast. For RCS blasts with a fallback configured, this reflects the actual mix of RCS and SMS/MMS pricing based on each recipient's RCS capability. For more details check the [Transactions page](https://app.pinnacle.sh/dashboard/settings/billing/transactions) and the [Audiences page](https://app.pinnacle.sh/dashboard/audiences) to see blasts. */ totalCost: number; }