@@ -28,16 +28,12 @@ pub struct XblStatusResponse {
28
28
pub struct XblStatusStatus {
29
29
#[ serde( rename( deserialize = "Overall" ) ) ]
30
30
pub overall : XblStatusStatusItem ,
31
- #[ serde( rename( deserialize = "SelectedScenarios" ) ) ]
32
- pub selected_scenarios : XblStatusStatusItem ,
33
31
}
34
32
35
33
#[ derive( Deserialize , Clone , Debug ) ]
36
34
pub struct XblStatusStatusItem {
37
35
#[ serde( rename( deserialize = "State" ) ) ]
38
36
pub state : String ,
39
- #[ serde( rename( deserialize = "Id" ) ) ]
40
- pub id : i64 ,
41
37
}
42
38
43
39
#[ allow( clippy:: module_name_repetitions) ]
@@ -55,14 +51,10 @@ pub struct XblStatusCoreService {
55
51
pub struct XblStatusCoreServiceScenario {
56
52
#[ serde( rename( deserialize = "Id" ) ) ]
57
53
pub id : i64 ,
58
- #[ serde( rename( deserialize = "Status" ) ) ]
59
- pub status : XblStatusCoreServiceStatus ,
60
54
}
61
55
62
56
#[ derive( Deserialize , Clone , Debug ) ]
63
57
pub struct XblStatusCoreServiceStatus {
64
- #[ serde( rename( deserialize = "Name" ) ) ]
65
- pub name : String ,
66
58
#[ serde( rename( deserialize = "Id" ) ) ]
67
59
pub id : i64 ,
68
60
}
@@ -71,13 +63,6 @@ pub struct XblStatusCoreServiceStatus {
71
63
pub struct MojangSessionServerStatus {
72
64
pub id : String ,
73
65
pub name : String ,
74
- pub properties : Vec < MojangSessionServerProperties > ,
75
- }
76
-
77
- #[ derive( Deserialize , Clone , Debug ) ]
78
- pub struct MojangSessionServerProperties {
79
- pub name : String ,
80
- pub value : String ,
81
66
}
82
67
83
68
#[ derive( Deserialize , Clone , Debug ) ]
0 commit comments