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

# PFGroupsIsMemberRequest

> PFGroupsIsMemberRequest 데이터 모델입니다. 엔터티가 그룹 또는 그룹 내 역할의 멤버인지 확인합니다. 엔터티가 멤버인지 여부를 나타내는 결과가.

PFGroupsIsMemberRequest 데이터 모델입니다. 엔터티가 그룹 또는 그룹 내 역할의 멤버인지 확인합니다. 엔터티가 그룹의 멤버인지 여부를 나타내는 결과가 반환되거나, 호출자에게 그룹의 멤버 목록을 읽을 권한이 없는 경우 권한 오류가 반환됩니다.

## 구문

```cpp theme={null}
typedef struct PFGroupsIsMemberRequest {  
    PFStringDictionaryEntry const* customTags;  
    uint32_t customTagsCount;  
    PFEntityKey const* entity;  
    PFEntityKey const* group;  
    const char* roleId;  
} PFGroupsIsMemberRequest;  
```

### 멤버

**`customTags`**   [PFStringDictionaryEntry](/services/playfab/api-references/c/pftypes/structs/pfstringdictionaryentry) const\*<br />*may be nullptr*

(선택 사항) 요청과 연결된 선택적 사용자 지정 태그입니다(예: 빌드 번호, 외부 추적 식별자 등).

**`customTagsCount`**   uint32\_t

customTags의 개수입니다.

**`entity`**   [PFEntityKey](/services/playfab/api-references/c/pftypes/structs/pfentitykey-c) const\*

이 작업을 수행할 엔터티입니다.

**`group`**   [PFEntityKey](/services/playfab/api-references/c/pftypes/structs/pfentitykey-c) const\*

그룹의 식별자입니다.

**`roleId`**   const char\*<br />*is null-terminated*

(선택 사항) 선택 사항: 멤버십을 확인할 역할의 ID입니다. 지정하지 않으면 기본값은 모든 역할(즉, 엔터티가 어떤 자격으로든 그룹의 멤버인지 확인)입니다.

## 요구 사항

**헤더:** PFGroupsTypes.h

## 참고 항목

[PFGroupsTypes 멤버](/services/playfab/api-references/c/pfgroupstypes/pfgroupstypes_members)


## Related topics

- [PFGroupsIsMemberAsync](/ko/services/playfab/api-references/c/pfgroups/functions/pfgroupsismemberasync.md)
- [Services C API overview - PFGroupsTypes.h](/ko/services/playfab/api-references/c/pfgroupstypes/pfgroupstypes_members.md)
- [PFGroupsListGroupMembersRequest](/ko/services/playfab/api-references/c/pfgroupstypes/structs/pfgroupslistgroupmembersrequest.md)
- [PFGroupsAddMembersRequest](/ko/services/playfab/api-references/c/pfgroupstypes/structs/pfgroupsaddmembersrequest.md)
- [PFGroupsRemoveMembersRequest](/ko/services/playfab/api-references/c/pfgroupstypes/structs/pfgroupsremovemembersrequest.md)
