1
2use super::output_request::*;
3
4
5pub type UtilRequestCommon = UtilOutputRequestCommon;
6
7pub type UtilGetDeviceRequest = UtilGetDeviceOutputRequest;
8pub type UtilGetDeviceResponse = UtilGetDeviceOutputResponse;
9
10pub type UtilGetZoneRequest = UtilGetZoneOutputRequest;
11pub type UtilGetZoneResponse = UtilGetZoneOutputResponse;
12
13pub type UtilResolveOODRequest = UtilResolveOODOutputRequest;
14pub type UtilResolveOODResponse = UtilResolveOODOutputResponse;
15
16pub type UtilGetOODStatusRequest = UtilGetOODStatusOutputRequest;
17pub type UtilGetOODStatusResponse = UtilGetOODStatusOutputResponse;
18
19pub type UtilGetNOCInfoRequest = UtilGetNOCInfoOutputRequest;
20pub type UtilGetNOCInfoResponse = UtilGetNOCInfoOutputResponse;
21
22pub type UtilGetDeviceStaticInfoRequest = UtilGetDeviceStaticInfoOutputRequest;
23pub type UtilGetDeviceStaticInfoResponse = UtilGetDeviceStaticInfoOutputResponse;
24
25pub type UtilGetNetworkAccessInfoRequest = UtilGetNetworkAccessInfoOutputRequest;
26pub type UtilGetNetworkAccessInfoResponse = UtilGetNetworkAccessInfoOutputResponse;
27
28pub type UtilGetSystemInfoRequest = UtilGetSystemInfoOutputRequest;
29pub type UtilGetSystemInfoResponse = UtilGetSystemInfoOutputResponse;
30
31pub type UtilGetVersionInfoRequest = UtilGetVersionInfoOutputRequest;
32pub type UtilGetVersionInfoResponse = UtilGetVersionInfoOutputResponse;
33
34pub type UtilBuildFileRequest = UtilBuildFileOutputRequest;
35pub type UtilBuildFileResponse = UtilBuildFileOutputResponse;
36
37pub type UtilBuildDirFromObjectMapRequest = UtilBuildDirFromObjectMapOutputRequest;
38pub type UtilBuildDirFromObjectMapResponse = UtilBuildDirFromObjectMapOutputResponse;