gw2lib_model/authenticated/account/bank.rs
1use crate::{authenticated::characters::InventoryItem, Endpoint, FixedEndpoint};
2
3pub type Bank = Vec<Option<InventoryItem>>;
4
5impl Endpoint for Bank {
6 const AUTHENTICATED: bool = true;
7 const LOCALE: bool = false;
8 const URL: &'static str = "v2/account/bank";
9 const VERSION: &'static str = "2022-07-25T00:00:00.000Z";
10}
11
12impl FixedEndpoint for Bank {}