gw2lib-model 2.2.2

Models for gw2lib
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use crate::{authenticated::characters::InventoryItem, Endpoint, FixedEndpoint};

pub type Bank = Vec<Option<InventoryItem>>;

impl Endpoint for Bank {
    const AUTHENTICATED: bool = true;
    const LOCALE: bool = false;
    const URL: &'static str = "v2/account/bank";
    const VERSION: &'static str = "2022-07-25T00:00:00.000Z";
}

impl FixedEndpoint for Bank {}