@kfijolek/boardgamegeekclient
Version:
TypeScript client to interact with BoardGameGeek public XML API
21 lines (20 loc) • 524 B
TypeScript
import { IBggDto } from "../interface";
export declare class BggUserDto implements IBggDto {
id: number;
name: string;
firstname: string;
lastname: string;
avatarlink: string;
yearregistered: number;
lastlogin: string;
stateorprovince: string;
country: string;
webaddress: string;
xboxaccount: string;
wiiaccount: string;
psnaccount: string;
battlenetaccount: string;
steamaccount: string;
traderating: string;
marketrating?: string;
}