export interface ValidateCampaignParams { /** Any additional information you want to provide. */ additionalInfo?: string; /** * Unique identifier for the campaign. * - When validating 10DLC campaigns, it must begin with the prefix `dlc_` (e.g., `dlc_1234567890`) * - When validating toll-free campaigns, it must begin with the prefix `tf_` (e.g., `tf_1234567890`) * - When validating RCS campaigns, it must begin with the prefix `rcs_` (e.g., `rcs_1234567890`) */ campaignId: string; }