export interface AudienceCountOnly { /** 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; /** * Total number of contacts in audience. * * Use the [Get Audience](/api-reference/audiences/get) endpoint with the pagination parameters to get the audience with its contacts. */ contactCount: number; }