UNPKG

@gw2api/types

Version:

TypeScript types for all datastructures used by the Guild Wars 2 API

14 lines (12 loc) 264 B
/** * Accounts wallet. * Required scopes: account, wallet * * @see https://wiki.guildwars2.com/wiki/API:2/account/wallet */ export interface AccountWallet { /** currency id */ id: number, /** amount of this currency in the wallet */ value: number, }