# 構造体 FApproveBackfillTicketResponse

> Review the response structure returned when approving a backfill ticket.

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

```cpp
#include <MatchmakerServer/Public/Models/ApproveBackfillTicketResponse.h>
```

##### 構文##syntax

```cpp
USTRUCT(BlueprintType)
struct FApproveBackfillTicketResponse
```

## フィールド##fields

### WasSuccessful##wassuccessful

リクエストが正常に完了したかどうかを示します。

#### 宣言##declaration

```cpp
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Unity Gaming Services | Matchmaker | Model")
bool bWasSuccessful = false
```

#### ブループリント##blueprint

| **名前**         | **型**                                                                                                  | **初期値** |
| :------------- | :----------------------------------------------------------------------------------------------------- | :------ |
| Was Successful | [Boolean](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | false   |

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

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

### BackfillTicket##backfillticket

現在のバックフィルチケットインスタンス。

#### 宣言##declaration

```cpp
UPROPERTY(EditAnywhere, BlueprintReadWrite, Category = "Unity Gaming Services | Matchmaker | Model")
FBackfillTicket BackfillTicket
```

#### ブループリント##blueprint

| **名前**          | **型**                                   |
| :-------------- | :-------------------------------------- |
| Backfill Ticket | [FBackfillTicket](./backfill-ticket.md) |

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

| **名前**           | **型**                                   |
| :--------------- | :-------------------------------------- |
| `BackfillTicket` | [FBackfillTicket](./backfill-ticket.md) |

### ErrorMessage##errormessage

エラーの詳細を示すエラーメッセージです。

#### 宣言##declaration

```cpp
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Unity Gaming Services | Matchmaker | Model")
FString ErrorMessage
```

#### ブループリント##blueprint

| **名前**   | **型**                                                                                                 |
| :------- | :---------------------------------------------------------------------------------------------------- |
| エラーメッセージ | [String](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) |

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

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

### ErrorCode##errorcode

エラーコード ([MatchmakerExceptionReason](/matchmaker/unreal-engine-sdk/sdk-api/matchmaker-core/models/matchmaker-exception-reason.md)) です。ブループリントとの互換性のため、int32 になっています。

#### 宣言##declaration

```cpp
UPROPERTY(EditAnywhere, BlueprintReadOnly, Category = "Unity Gaming Services | Matchmaker | Model")
int32 ErrorCode = Matchmaker::kMatchmakerExceptionOffset
```

#### ブループリント##blueprint

| **名前** | **型**                                                                                             | **初期値** |
| :----- | :------------------------------------------------------------------------------------------------ | :------ |
| エラーコード | [整数](https://docs.unrealengine.com/5.3/en-US/blueprint-variables-in-unreal-engine/#variabletypes) | `0`     |

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

| **名前**      | **型**                                                                                                          | **初期値** |
| :---------- | :------------------------------------------------------------------------------------------------------------- | :------ |
| `ErrorCode` | [int32](https://docs.unrealengine.com/5.3/en-US/API/Runtime/Core/GenericPlatform/FGenericPlatformTypes/int32/) | `0`     |

## メソッド##methods

### GetReasonEnum()##getreasonenum()

#### 宣言##declaration

```cpp
EMatchmakerExceptionReason GetReasonEnum() const
```

#### 戻り値##returns

| **型**                                                                                                                     | **説明**                                                                                                                                     |
| :------------------------------------------------------------------------------------------------------------------------ | :----------------------------------------------------------------------------------------------------------------------------------------- |
| [EMatchmakerExceptionReason](/matchmaker/unreal-engine-sdk/sdk-api/matchmaker-core/models/matchmaker-exception-reason.md) | 例外の原因で、[EMatchmakerExceptionReason](/matchmaker/unreal-engine-sdk/sdk-api/matchmaker-core/models/matchmaker-exception-reason.md) として返されます。 |
