/** * @example * { * id: "aud_abc123" * } * * @example * { * id: "aud_abc123" * } */ export interface AudiencesGetRequest { /** Audience ID. This identifier is a string that always begins with the prefix `aud_`, for example: `aud_abc123`. */ id: string; /** Page number. If provided with or without limit, returns paginated contacts. */ page?: number; /** Items per page. If provided with or without page, returns paginated contacts. */ limit?: number; }