---
title: "RecipientGroupFilter"
slug: "common-vapidatatype-nesrecipientgroupfilter"
updated: 2026-04-23T08:54:46Z
published: 2026-04-23T09:01:54Z
canonical: "api.ncloud-docs.com/common-vapidatatype-nesrecipientgroupfilter"
---

> ## Documentation Index
> Fetch the complete documentation index at: https://api.ncloud-docs.com/llms.txt
> Use this file to discover all available pages before exploring further.

# RecipientGroupFilter

<p class="platform-info type-classic-vpc">Classic/VPC 환경에서 이용 가능합니다.</p>

수신자 그룹 조합 필터입니다.

## 구문 <a name="구문"></a>
구문은 다음과 같습니다.

```Java
private Boolean andFilter;
private List<String> groups;
```

## 필드 <a name="필드"></a>
필드에 대한 설명은 다음과 같습니다.

| 필드      | 타입 | 필수 여부                 | 설명                                             |
|-----------|-----------|-------------|--------------------------------------------------|
| `andFilter` | Boolean       | Required          | AND 조합 여부<ul><li>`true` \| `false`<ul><li>`true`: AND 조합</li><li>`false`: OR 조합</li></ul></li></ul> |
| `groups`    | List&lt;String&gt;       | Required     | 수신자 그룹명 목록<ul><li>최대 5개</li></ul>                               |

## 예시 <a name="예시"></a>
예시는 다음과 같습니다.

```json
{
  "andFilter": true,
  "groups": ["10대", "20대"]
}
```
