Inherits: Resource > Reference > Object
Data Struct that describes the response from /users/
endpoint
Further details at gamejolt's api documentation
type | property | default value |
---|---|---|
bool | success | False |
String | message | "" |
int | id | 0 |
int | type | Null |
String | username | "" |
String | avatar_url | "" |
String | signed_up | "" |
int | signed_up_timestamp | 0 |
String | last_logged_in | "" |
int | last_logged_in_timestamp | 0 |
int | status | Null |
String | developer_name | "" |
String | developer_website | "" |
String | developer_description | "" |
enum Status:
enum Type:
Default | False |
Status of the request.
Default | "" |
Will contain error message if request fails.
Default | 0 |
The ID of the user.
The type of user. Can be any type defined in the enum Types
Default | "" |
The type of user.
Default | "" |
The URL of the user’s avatar.
Default | "" |
How long ago the user signed up.
Default | 0 |
The timestamp (in seconds) of when the user signed up.
Default | "" |
How long ago the user was last logged in. Will be "Online Now" if the user is currently online.
Default | 0 |
The timestamp (in seconds) of when the user was last logged in.
Status.Active
if the user is still a member of the site. Status.Banned
if they’ve been banned.
Default | "" |
The user’s display name.
(This is available to all users and the developer_
is there for backwards compatibility)
Default | "" |
The user’s website (or empty string if not specified)
(This is available to all users and the developer_
is there for backwards compatibility)
Default | "" |
The user’s profile markdown description.
(This is available to all users and the developer_
is there for backwards compatibility)