# 구조체 AuthenticationPlayerProfileChangedResponse

> Reference the data structure for player profile change responses.

인증 플레이어 프로필의 변경을 나타내는 구조체입니다.

##### Include##include

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

##### 구문##syntax

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

## 필드##fields

### WasSuccessful##wassuccessful

변경이 성공적이었는지 여부입니다.

#### 선언##declaration

```cpp
bool bWasSuccessful = false
```

#### 블루프린트##blueprint

| **이름**         | **유형**                                                                                            | **기본값** | **블루프린트 프로퍼티 유형** | **블루프린트 프로퍼티 카테고리**   |                |
| :------------- | :------------------------------------------------------------------------------------------------ | :------ | :---------------- | :-------------------- | -------------- |
| Was Successful | [부울](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` |

### OldProfileName##oldprofilename

이전 프로필 이름입니다.

#### 선언##declaration

```cpp
FString OldProfileName
```

#### 블루프린트##blueprint

| **이름**           | **유형**                                                                                             | **블루프린트 프로퍼티 유형** | **블루프린트 프로퍼티 카테고리**   |                |    |
| :--------------- | :------------------------------------------------------------------------------------------------- | :---------------- | :-------------------- | -------------- | -- |
| Old Profile Name | [문자열](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | BlueprintReadOnly | Unity Gaming Services | Authentication | 모델 |

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

| **이름**           | **유형**                                                                                  |
| :--------------- | :-------------------------------------------------------------------------------------- |
| `OldProfileName` | [FString](https://docs.unrealengine.com/5.3/en-US/API/Runtime/Core/Containers/FString/) |

### NewProfileName##newprofilename

새롭거나 시도한 프로필 이름입니다.

#### 선언##declaration

```cpp
FString NewProfileName
```

#### 블루프린트##blueprint

| **이름**           | **유형**                                                                                             | **블루프린트 프로퍼티 유형** | **블루프린트 프로퍼티 카테고리**   |                |    |
| :--------------- | :------------------------------------------------------------------------------------------------- | :---------------- | :-------------------- | -------------- | -- |
| New Profile Name | [문자열](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | BlueprintReadOnly | Unity Gaming Services | Authentication | 모델 |

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

| **이름**           | **유형**                                                                                  |
| :--------------- | :-------------------------------------------------------------------------------------- |
| `NewProfileName` | [FString](https://docs.unrealengine.com/5.3/en-US/API/Runtime/Core/Containers/FString/) |

### ErrorCode##errorcode

생성된 인증 세션 토큰입니다. 이 토큰은 사용자를 다시 로그인하는 데 사용할 수 있습니다.

#### 선언##declaration

```cpp
uint8 ErrorCode = 0
```

#### 블루프린트##blueprint

| **이름** | **유형**                                                                                             | **블루프린트 프로퍼티 유형** | **블루프린트 프로퍼티 카테고리**   |                |    |
| :----- | :------------------------------------------------------------------------------------------------- | :---------------- | :-------------------- | -------------- | -- |
| 오류 코드  | [바이트](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

| **이름**   | **유형**                                                                                             | **블루프린트 프로퍼티 유형** | **블루프린트 프로퍼티 카테고리**   |                |    |
| :------- | :------------------------------------------------------------------------------------------------- | :---------------- | :-------------------- | -------------- | -- |
| 오류 세부 정보 | [문자열](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/) |
