1use crate::endpoint; 2 3use serde::{Deserialize, Serialize}; 4 5/// The current build id of the game. 6#[derive(Copy, Clone, Debug, Serialize, Deserialize)] 7pub struct Build { 8 pub id: u64, 9} 10 11endpoint!(Build, "/v2/build");