# 구조체 AuthenticationStateChangedResponse

> Reference the data structure for authentication state changes.

인증 상태의 변화를 나타내는 구조체입니다.

##### Include##include

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

##### 구문##syntax

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

## 필드##fields

### OldState##oldstate

이전 상태입니다.

#### 선언##declaration

```cpp
EAuthenticationStates OldState = EAuthenticationStates::SignedOut;
```

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

| **이름**    | **유형**                                            | **기본값**                            | **블루프린트 프로퍼티 유형** | **블루프린트 프로퍼티 카테고리**   |                |    |
| :-------- | :------------------------------------------------ | :--------------------------------- | :---------------- | :-------------------- | -------------- | -- |
| Old State | [EAuthenticationStates](../authentication-states) | `EAuthenticationStates::SignedOut` | BlueprintReadOnly | Unity Gaming Services | Authentication | 모델 |

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

| **이름**     | **유형**                                            | **기본값**                            |
| :--------- | :------------------------------------------------ | :--------------------------------- |
| `OldState` | [EAuthenticationStates](../authentication-states) | `EAuthenticationStates::SignedOut` |

### NewState##newstate

새로운 상태입니다.

#### 선언##declaration

```cpp
EAuthenticationStates NewState = EAuthenticationStates::SignedOut;
```

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

| **이름**    | **유형**                                            | **기본값**                            | **블루프린트 프로퍼티 유형** | **블루프린트 프로퍼티 카테고리**   |                |    |
| :-------- | :------------------------------------------------ | :--------------------------------- | :---------------- | :-------------------- | -------------- | -- |
| New State | [EAuthenticationStates](../authentication-states) | `EAuthenticationStates::SignedOut` | BlueprintReadOnly | Unity Gaming Services | Authentication | 모델 |

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

| **이름**     | **유형**                                            | **기본값**                            |
| :--------- | :------------------------------------------------ | :--------------------------------- |
| `NewState` | [EAuthenticationStates](../authentication-states) | `EAuthenticationStates::SignedOut` |
