0
0
Fork 0

Update success from a boolean to an integer status

This commit is contained in:
Oliver-Akins 2020-12-16 12:25:10 -07:00
parent 06930d4fe5
commit 3295747386

View file

@ -1,8 +1,8 @@
# Properties Of All Response Payloads # Properties Of All Response Payloads
| Property | Type | Description | Property | Type | Description
| -------- | ---- | ----------- | -------- | ---- | -----------
| success | Boolean | Whether the player joined the team successfully. | status | Integer | The response code of the server. This follows HTTP standards as described by [Mozilla's Documentation](https://developer.mozilla.org/en-US/docs/Web/HTTP/Status)
| message? | String | More information relating to the response. This is set iff `success` is `false`. | message? | String | More information relating to the response. This is set iff `success` is a non 2XX value.
<br><br> <br><br>
--- ---