Wants List Entity

{
    wantslist: {
        idWantsList:                        // Wants list ID
        game: {}                            // Game entity the wants list was created for
        name:                               // wants list's name
        itemCount:                          // current amount of wants at this wants list
    }
}

Example Entity

{
    wantslist: [{
        idWantsList: 239312
        game: {
            idGame: 1
            name: "Magic the Gathering"
        }
        name: "Crazy Deck"
        itemCount: 22
    }
    {
        idWantsList: 239314
        game: {
            idGame: 1
            name: "Magic the Gathering"
        }
        name: "Shopping Expensives"
        itemCount: 10
    }]
}