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

ModioMod

Ahmed Castro edited this page Nov 10, 2017 · 20 revisions
struct ModioMod
{
  int id;
  int game;
  ModioMember* member;
  double price;
  int datereg;
  int dateup;
  ModioImage* logo;
  char* homepage;
  char* name;
  char* nameid;
  char* summary;
  char* description;
  char* metadata;
  ModioMedia* media;
  ModioModfile* modfile;
  ModioRatings* ratings;
  ModioTag* tags_array;
  int tags_array_size;
};

API schema: Mod Object

The ModioMod structure is returned by the Mods functions. They represent mods created by the mod.io users.

Name Type Description
id int Unique mod identifier
game int Unique game identifier
member ModioMember* ModioMember object containing member data
price double Sale price if applicable, in USD
datereg int Unix timestamp of date registered
dateup int Unix timestamp of date last updated
logo ModioImage* ModioImage object containing logo data
homepage char* Mod homepage URL
name char* Name of the mod
nameid char* Unique SEO-friendly mod uri
summary char* Brief summary of the mod
description char* Description of the mod
metadata char* Metadata for the mod
url char* Official website url for the mod
media ModioMedia* ModioMedia object containing media data
modfile ModioModfile* ModioModfile object containing file data
ratings ModioRatings* ModioRatings object containing rating data
tags_array ModioTag* ModioTag object containing tags data
tags_array_size int Size of the tags_array

Contents

Clone this wiki locally