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
//! Fired when buying a new module and equipping it to the current active ship.
use serde::{Deserialize, Serialize};
use crate::modules::ship::{ShipModule, ShipSlot, ShipType};
/// Fired when buying a new module and equipping it to the current active ship.
#[derive(Debug, Serialize, Deserialize, Clone, PartialEq)]
#[serde(rename_all = "PascalCase")]
pub struct ModuleBuyEvent {
/// The slot the module is installed into.
pub slot: ShipSlot,
/// The module that was in the given slot and is now stored at the current location.
pub stored_item: Option<ShipModule>,
/// The localized name of the module that was stored.
#[serde(rename = "StoredItem_Localised")]
pub stored_item_localized: Option<String>,
/// The module that was bought and installed in the given slot.
pub buy_item: ShipModule,
/// The localized name of the bought module.
#[serde(rename = "BuyItem_Localised")]
pub buy_item_localized: Option<String>,
/// The market id where the module was bought.
#[serde(rename = "MarketID")]
pub market_id: u64,
/// The number of credits that were spent on the module.
pub buy_price: u64,
/// The type of the current active ship that the module has been installed onto.
pub ship: ShipType,
/// The id of the current active ship that the module has been installed onto.
#[serde(rename = "ShipID")]
pub ship_id: u64,
}