gw2lib_model/authenticated/account/raids.rs
1use crate::{misc::raids::EventId, Endpoint, FixedEndpoint};
2
3pub type RaidEvent = Vec<EventId>;
4
5impl Endpoint for RaidEvent {
6 const AUTHENTICATED: bool = true;
7 const LOCALE: bool = false;
8 const URL: &'static str = "v2/account/raids";
9 const VERSION: &'static str = "2023-08-02T00:00:00.000Z";
10}
11
12impl FixedEndpoint for RaidEvent {}