igdb-types
Version:
TypeScript type definitions for IGDB API responses
17 lines (16 loc) • 562 B
TypeScript
/**
* Represents age rating organization information.
*
* Request Path: https://api.igdb.com/v4/age_rating_organizations
* Description: Age Rating according to various rating organizations.
*/
export type AgeRatingOrganization = {
/** UUID hash of the object. */
checksum: string;
/** Date this was initially added to the IGDB database. */
created_at: number | Date;
/** The title of an age rating organization. */
name: string;
/** The last date this entry was updated in the IGDB database. */
updated_at: number | Date;
};