Heroic Labs · Schema
apiAccount
A user with additional account details. Always the current user.
Game BackendMultiplayerReal-TimeWebSocketMatchmakingLeaderboardsSocial GamingOpen SourceLiveOpsgRPC
Properties
| Name | Type | Description |
|---|---|---|
| user | object | |
| wallet | string | The user's wallet data. |
| string | The email address of the user. | |
| devices | array | The devices which belong to the user's account. |
| customId | string | The custom id in the user's account. |
| verifyTime | string | The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's email was verified. |
| disableTime | string | The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's account was disabled/banned. |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://api-evangelist.github.io/heroiclabs/json-schema/apiAccount.json",
"title": "apiAccount",
"type": "object",
"properties": {
"user": {
"$ref": "#/components/schemas/apiUser"
},
"wallet": {
"type": "string",
"description": "The user's wallet data."
},
"email": {
"type": "string",
"description": "The email address of the user."
},
"devices": {
"type": "array",
"items": {
"$ref": "#/components/schemas/apiAccountDevice"
},
"description": "The devices which belong to the user's account."
},
"customId": {
"type": "string",
"description": "The custom id in the user's account."
},
"verifyTime": {
"type": "string",
"format": "date-time",
"description": "The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's email was verified."
},
"disableTime": {
"type": "string",
"format": "date-time",
"description": "The UNIX time (for gRPC clients) or ISO string (for REST clients) when the user's account was disabled/banned."
}
},
"description": "A user with additional account details. Always the current user."
}