1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//! # EVE ESI Alliance Models
//!
//! This module defines the `Alliance` struct, which models the core properties of an alliance in EVE Online.
//!
//! ## ESI Documentation
//! - <https://developers.eveonline.com/api-explorer>
//!
//! ## Models
//! - [`Alliance`]: Represents an alliance in EVE Online.
//! - [`AllianceIcons`]: Represents the 128x128 & 64x64 icon URLs for an alliance
use ;
use ;
/// Represents an alliance in EVE Online
///
/// # Documentation
/// - <https://developers.eveonline.com/api-explorer#/schemas/AlliancesAllianceIdGet>
/// Represents the 128x128 & 64x64 icon URLs for an alliance
///
/// # Documentation
/// - <https://developers.eveonline.com/api-explorer#/schemas/AlliancesAllianceIdIconsGet>