# 열거형 StatusEnum

> Review the enumeration values representing the status of a matchmaking ticket.

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

##### Include##include

```cpp
#include <MatchmakerClient/Public/Models/GetTicketStatusResponse.h>
```

##### 구문##syntax

```cpp
UENUM()
enum class StatusEnum : uint8
{
	Timeout,
	Failed,
	InProgress,
	Found,
}
```

## 값(Values)##values

| **표시 이름**  | **이름**     | **값** |
| :--------- | :--------- | :---- |
| Timeout    | Timeout    | 0     |
| Failed     | Failed     | 1     |
| InProgress | InProgress | 2     |
| Found      | Found      | 3     |
| Forbidden  | Forbidden  | 4     |
