# 構造体 AuthenticationPlayerProfileDeletedResponse

> Reference the data structure for player profile deletion responses.

プレイヤープロファイル削除からの応答を表す構造体。

##### Include (含める)##include

```cpp
#include "Models/AuthenticationPlayerProfileDeletedResponse.h"
```

##### 構文##syntax

```cpp
USTRUCT(BlueprintType)
struct AUTHENTICATION_API AuthenticationPlayerProfileDeletedResponse
```

## フィールド##fields

### WasSuccessful##wassuccessful

削除が成功であったかどうか。

#### 宣言##declaration

```cpp
bool bWasSuccessful = false
```

#### Blueprint##blueprint

| **名前**         | **型**                                                                                                  | **初期値** | **Blueprint プロパティの種類** | **Blueprint プロパティのカテゴリ** |                |
| :------------- | :----------------------------------------------------------------------------------------------------- | :------ | :--------------------- | :----------------------- | -------------- |
| Was Successful | [Boolean](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | `false` | BlueprintReadOnly      | Unity Gaming Services    | Authentication |

#### C++##c++

| **名前**           | **型**  | **初期値** |
| :--------------- | :----- | :------ |
| `bWasSuccessful` | `bool` | `false` |

### ProfileName##profilename

削除されたプロファイルの名前。

#### 宣言##declaration

```cpp
FString ProfileName
```

#### Blueprint##blueprint

| **名前**       | **型**                                                                                                 | **Blueprint プロパティの種類** | **Blueprint プロパティのカテゴリ** |                |     |
| :----------- | :---------------------------------------------------------------------------------------------------- | :--------------------- | :----------------------- | -------------- | --- |
| Profile Name | [String](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | BlueprintReadOnly      | Unity Gaming Services    | Authentication | モデル |

#### C++##c++

| **名前**        | **型**                                                                                   |
| :------------ | :-------------------------------------------------------------------------------------- |
| `ProfileName` | [FString](https://docs.unrealengine.com/5.3/en-US/API/Runtime/Core/Containers/FString/) |

### ErrorCode##errorcode

プロファイル削除でエラーが発生した場合のエラーコード。

#### 宣言##declaration

```cpp
uint8 ErrorCode = 0
```

#### Blueprint##blueprint

| **名前** | **型**                                                                                               | **Blueprint プロパティの種類** | **Blueprint プロパティのカテゴリ** |                |     |
| :----- | :-------------------------------------------------------------------------------------------------- | :--------------------- | :----------------------- | -------------- | --- |
| エラーコード | [Byte](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | BlueprintReadOnly      | Unity Gaming Services    | Authentication | モデル |

#### C++##c++

| **名前**      | **型**   |
| :---------- | :------ |
| `ErrorCode` | `uint8` |

### ErrorDetails##errordetails

プロファイル削除でエラーが発生した場合のエラー詳細。

#### 宣言##declaration

```cpp
FString ErrorDetails
```

#### Blueprint##blueprint

| **名前** | **型**                                                                                                 | **Blueprint プロパティの種類** | **Blueprint プロパティのカテゴリ** |                |     |
| :----- | :---------------------------------------------------------------------------------------------------- | :--------------------- | :----------------------- | -------------- | --- |
| エラー詳細  | [String](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | BlueprintReadOnly      | Unity Gaming Services    | Authentication | モデル |

#### C++##c++

| **名前**         | **型**                                                                                   |
| :------------- | :-------------------------------------------------------------------------------------- |
| `ErrorDetails` | [FString](https://docs.unrealengine.com/5.3/en-US/API/Runtime/Core/Containers/FString/) |
