@kfijolek/boardgamegeekclient
Version:
TypeScript client to interact with BoardGameGeek public XML API
22 lines (21 loc) • 627 B
TypeScript
import { BggCollectionItemStatsDto, BggCollectionItemStatusDto, BggThingVersionDto } from ".";
export declare class BggCollectionItemDto {
objectid: number;
collid: number;
objecttype: string;
subtype: string;
yearpublished: number;
numplays: number;
image: string;
thumbnail: string;
comment: string;
wishlistcomment: string;
name: string;
originalname: string;
wantpartslist: string;
haspartslist: string;
status: BggCollectionItemStatusDto;
conditiontext: string;
stats: BggCollectionItemStatsDto;
version: BggThingVersionDto[];
}