ModioUser - modio/modio-sdk-legacy GitHub Wiki
mod.io user.
struct ModioUser
{
u32 id;
long date_online;
char* username;
char* name_id;
char* timezone;
char* language;
char* profile_url;
ModioAvatar avatar;
};
Name | Type | Description |
---|---|---|
id | u32 |
Unique user identifier |
date_online | long |
Last online date time |
username | char* |
Non-unique username of the user |
name_id | char* |
Unique nameid of user which forms end of their profile URL |
timezone | char* |
The Timezone of the user, shown in {Country}/{City} format |
language | char |
The users language preference, limited to two characters |
avatar | ModioAvatar |
ModioAvatar object containing avatar data |
See also: API, modio::User