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

# PFPlayerDataManagementUpdateUserInternalDataRequest

> PFPlayerDataManagementUpdateUserInternalDataRequest データ モデル。この関数は、カスタム データを含む任意の JSON オブジェクトに対して追加的な更新を実行します。

PFPlayerDataManagementUpdateUserInternalDataRequest データ モデル。この関数は、ユーザーのカスタム データを含む任意の JSON オブジェクトに対して追加的な更新を実行します。カスタム データ オブジェクトを更新する際、オブジェクト内に既に存在するキーはその値が上書きされ、null 値のキーは削除されます。呼び出しで指定されたもの以外のキーと値のペアは変更されません。

## 構文

```cpp theme={null}
typedef struct PFPlayerDataManagementUpdateUserInternalDataRequest {  
    PFStringDictionaryEntry const* customTags;  
    uint32_t customTagsCount;  
    PFStringDictionaryEntry const* data;  
    uint32_t dataCount;  
    const char* const* keysToRemove;  
    uint32_t keysToRemoveCount;  
    const char* playFabId;  
} PFPlayerDataManagementUpdateUserInternalDataRequest;  
```

### メンバー

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

(省略可能) 要求に関連付けられた任意のカスタム タグ (ビルド番号、外部トレース識別子など)。

**`customTagsCount`**   uint32\_t

customTags の数

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

(省略可能) カスタム データに書き込むキーと値のペア。キーは空白がトリミングされ、サイズが制限され、'!' 文字で始めることや null にすることはできません。

**`dataCount`**   uint32\_t

data の数

**`keysToRemove`**   const char\* const\*<br />*may be nullptr*

(省略可能) UserData から削除する Data キーの省略可能な一覧。一部の SDK では、言語上の制約により Data に null 値を挿入できません。キーを直接削除するにはこれを使用します。

**`keysToRemoveCount`**   uint32\_t

keysToRemove の数

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

操作の対象となるユーザーの、PlayFab によって割り当てられた一意 ID。

## 要件

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

## 関連項目

[PFPlayerDataManagementTypes のメンバー](/services/playfab/api-references/c/pfplayerdatamanagementtypes/pfplayerdatamanagementtypes_members)


## Related topics

- [PFPlayerDataManagementServerUpdateUserInternalDataAsync](/ja-jp/services/playfab/api-references/c/pfplayerdatamanagement/functions/pfplayerdatamanagementserverupdateuserinternaldataasync.md)
- [PFPlayerDataManagementServerUpdateUserPublisherInternalDataAsync](/ja-jp/services/playfab/api-references/c/pfplayerdatamanagement/functions/pfplayerdatamanagementserverupdateuserpublisherinternaldataasync.md)
- [Services C API overview - PFPlayerDataManagementTypes.h](/ja-jp/services/playfab/api-references/c/pfplayerdatamanagementtypes/pfplayerdatamanagementtypes_members.md)
- [PFPlayerDataManagementServerUpdateUserInternalDataGetResult](/ja-jp/services/playfab/api-references/c/pfplayerdatamanagement/functions/pfplayerdatamanagementserverupdateuserinternaldatagetresult.md)
- [PFPlayerDataManagementServerUpdateUserPublisherInternalDataGetResult](/ja-jp/services/playfab/api-references/c/pfplayerdatamanagement/functions/pfplayerdatamanagementserverupdateuserpublisherinternaldatagetresult.md)
