1
2
3
4
5
6
7
8
9
10
11
12
13
use crate::endpoint;

use serde::{Deserialize, Serialize};

/// The current build id of the game.
///
/// *https://api.guildwars2.com/v2/build*
#[derive(Copy, Clone, Debug, Serialize, Deserialize)]
pub struct Build {
    pub id: u64,
}

endpoint!(Build, "/v2/build");