> ## 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.

# PFEntityKey C API

> PlayFab C SDK の PFEntityKey データ モデル: API 呼び出しで単一の PlayFab エンティティを一意に識別する、エンティティの種類と ID を組み合わせた構造体。

PFEntityKey データ モデル。1 つのエンティティを一意に識別する、エンティティの種類と ID を組み合わせた構造体。

## 構文

```cpp theme={null}
typedef struct PFEntityKey {  
    const char* id;  
    const char* type;  
} PFEntityKey;  
```

### メンバー

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

エンティティの一意の ID。

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

(省略可) エンティティの種類。[/playfab/live-service-management/game-configuration/entities/available-built-in-entity-types.](/services/playfab/live-service-management/game-configuration/entities/available-built-in-entity-types) を参照してください。

## 要件

**ヘッダー:** PFTypes.h

## 関連項目

[PFTypes メンバー](/services/playfab/api-references/c/pftypes/pftypes_members)
