export interface DlcCampaignSummary { /** Unique identifier for the 10DLC campaign. */ campaignId: string; /** Name of the campaign. */ name?: string; /** Current status of the campaign. */ status: DlcCampaignSummary.Status; /** Brand ID associated with this campaign. */ brandId?: string; /** Primary use case for this campaign. */ useCase?: string; /** ISO 8601 timestamp of when the campaign was created. */ createdAt: string; /** ISO 8601 timestamp of when the campaign was last updated. */ updatedAt: string; } export declare namespace DlcCampaignSummary { /** Current status of the campaign. */ const Status: { readonly Incomplete: "INCOMPLETE"; readonly InReview: "IN REVIEW"; readonly Verified: "VERIFIED"; readonly Failed: "FAILED"; }; type Status = (typeof Status)[keyof typeof Status]; }