GUABaseResult
GUABaseResult is UnionAdapter SDK's base class for callback data structures shared by MSDK and Player Network SDK.
- Unity
- Unreal Engine
| Parameter | Type | Description |
|---|---|---|
| MethodId | int | Callback method ID, see MethodID. |
| RetCode | int | SDK return code For more information, see Client Error Code. |
| RetMsg | string | SDK return message |
| ThirdCode | int | Third-party channel return code Default: 0 When a third-party error occurs, the corresponding MSDK error code or Player Network SDK error code is returned. |
| ThirdMsg | string | Third-party channel return message |
| ExtraJson | string | The extended field (JSON string) that contains additional information for some channels. |
| Parameter | Type | Description |
|---|---|---|
| method_id | int32_t | Callback method ID, see MethodID. |
| ret_code | int32_t | SDK return code For more information, see Client Error Code. |
| ret_msg | std::string | Information description corresponding to SDK return code |
| third_code | int32_t | Third-party channel return code Default: 0 When a third-party error occurs, the corresponding MSDK error code or Player Network SDK error code is returned. |
| third_msg | std::string | Third-party channel return message |
| extra_json | std::string | The extended field (JSON string) that contains additional information for some channels. |