| 3409 | }; |
| 3410 | |
| 3411 | struct AddPlayerTagResult : public PlayFabResultCommon |
| 3412 | { |
| 3413 | |
| 3414 | AddPlayerTagResult() : |
| 3415 | PlayFabResultCommon() |
| 3416 | {} |
| 3417 | |
| 3418 | AddPlayerTagResult(const AddPlayerTagResult&) : |
| 3419 | PlayFabResultCommon() |
| 3420 | {} |
| 3421 | |
| 3422 | ~AddPlayerTagResult() { } |
| 3423 | |
| 3424 | void FromJson(Json::Value&) override |
| 3425 | { |
| 3426 | } |
| 3427 | |
| 3428 | Json::Value ToJson() const override |
| 3429 | { |
| 3430 | Json::Value output; |
| 3431 | return output; |
| 3432 | } |
| 3433 | }; |
| 3434 | |
| 3435 | struct AddServerBuildRequest : public PlayFabRequestCommon |
| 3436 | { |
nothing calls this directly
no outgoing calls
no test coverage detected