Skip to content
This repository was archived by the owner on Sep 21, 2022. It is now read-only.

ModioUser

Ahmed Castro edited this page Dec 20, 2017 · 8 revisions

The ModioUser object represent mod.io users associated with Games and Mods (C compatible).

struct ModioUser
{
  u32 id;
  long date_online;
  char* username;
  char* name_id;
  char* timezone;
  char* language;
  char* profile_url;
  ModioAvatar avatar;
};

API schema: User Object

C++ wrapper: User

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

Contents

Clone this wiki locally