export interface AudienceSummary { /** Audience public ID. This identifier is a string that always begins with the prefix `aud_`, for example: `aud_abc123`. */ id: string; /** Audience name. */ name: string; /** Audience description. */ description: string; /** ISO 8601 timestamp of when the audience was created. */ createdAt: string; /** ISO 8601 timestamp of when the audience was last updated. */ updatedAt: string; }