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
use super::output_request::*;
pub type MetaRequestCommon = MetaOutputRequestCommon;
pub type GlobalStateMetaAddAccessRequest = GlobalStateMetaAddAccessOutputRequest;
pub type GlobalStateMetaAddAccessResponse = GlobalStateMetaAddAccessOutputResponse;
pub type GlobalStateMetaRemoveAccessRequest = GlobalStateMetaRemoveAccessOutputRequest;
pub type GlobalStateMetaRemoveAccessResponse = GlobalStateMetaRemoveAccessOutputResponse;
pub type GlobalStateMetaClearAccessRequest = GlobalStateMetaClearAccessOutputRequest;
pub type GlobalStateMetaClearAccessResponse = GlobalStateMetaClearAccessOutputResponse;
pub type GlobalStateMetaAddLinkRequest = GlobalStateMetaAddLinkOutputRequest;
pub type GlobalStateMetaAddLinkResponse = GlobalStateMetaAddLinkOutputResponse;
pub type GlobalStateMetaRemoveLinkRequest = GlobalStateMetaRemoveLinkOutputRequest;
pub type GlobalStateMetaRemoveLinkResponse = GlobalStateMetaRemoveLinkOutputResponse;
pub type GlobalStateMetaClearLinkRequest = GlobalStateMetaClearLinkOutputRequest;
pub type GlobalStateMetaClearLinkResponse = GlobalStateMetaClearLinkOutputResponse;
pub type GlobalStateMetaAddObjectMetaRequest = GlobalStateMetaAddObjectMetaOutputRequest;
pub type GlobalStateMetaAddObjectMetaResponse = GlobalStateMetaAddObjectMetaOutputResponse;
pub type GlobalStateMetaRemoveObjectMetaRequest = GlobalStateMetaRemoveObjectMetaOutputRequest;
pub type GlobalStateMetaRemoveObjectMetaResponse = GlobalStateMetaRemoveObjectMetaOutputResponse;
pub type GlobalStateMetaClearObjectMetaRequest = GlobalStateMetaClearObjectMetaOutputRequest;
pub type GlobalStateMetaClearObjectMetaResponse = GlobalStateMetaClearObjectMetaOutputResponse;
pub type GlobalStateMetaAddPathConfigRequest = GlobalStateMetaAddPathConfigOutputRequest;
pub type GlobalStateMetaAddPathConfigResponse = GlobalStateMetaAddPathConfigOutputResponse;
pub type GlobalStateMetaRemovePathConfigRequest = GlobalStateMetaRemovePathConfigOutputRequest;
pub type GlobalStateMetaRemovePathConfigResponse = GlobalStateMetaRemovePathConfigOutputResponse;
pub type GlobalStateMetaClearPathConfigRequest = GlobalStateMetaClearPathConfigOutputRequest;
pub type GlobalStateMetaClearPathConfigResponse = GlobalStateMetaClearPathConfigOutputResponse;