gw2lib-model 2.2.2

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

pub type RaidEvent = Vec<EventId>;

impl Endpoint for RaidEvent {
    const AUTHENTICATED: bool = true;
    const LOCALE: bool = false;
    const URL: &'static str = "v2/account/raids";
    const VERSION: &'static str = "2023-08-02T00:00:00.000Z";
}

impl FixedEndpoint for RaidEvent {}