export interface RcsCampaignSummary { /** Unique identifier for the RCS campaign. */ campaignId: string; /** Name of the campaign. */ name?: string; /** Current status of the campaign. */ status: RcsCampaignSummary.Status; /** Brand ID associated with this campaign. */ brandId?: string; /** RCS agent ID associated with this campaign. */ agentId?: 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 RcsCampaignSummary { /** 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]; }