@mrmory/bggclient
Version:
Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient
28 lines (27 loc) • 641 B
TypeScript
export declare class BggCollectionItemDto {
objectid: number;
collid: number;
objecttype: string;
subtype: string;
yearpublished: number;
numplays: number;
image: string;
thumbnail: string;
comment: string;
name: string;
originalname: string;
status: BggCollectionItemStatusDto;
}
declare class BggCollectionItemStatusDto {
own: number;
prevowned: number;
fortrade: number;
want: number;
wanttoplay: number;
wanttobuy: number;
wishlist: number;
wishlistpriority: number;
preordered: number;
lastmodified: string;
}
export {};