@mrmory/bggclient
Version:
Javascript client to interact with BoardGameGeek public XML API based on boardgamegeekjsclient
24 lines (20 loc) • 779 B
text/typescript
import { JsonAlias, JsonClassType, JsonIgnoreProperties, JsonManagedReference, JsonProperty } from "jackson-js";
import { IBggDto } from "../interface";
import { BggCollectionItemDto } from "./subdto";
export class BggCollectionDto implements IBggDto {
id!: number;
totalitems!: number;
pubdate!: string;
items!: BggCollectionItemDto[];
}