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
use super::output_request::*;

pub type TransGetContextRequest = TransGetContextOutputRequest;
pub type TransGetContextResponse = TransGetContextOutputResponse;

pub type TransPutContextRequest = TransPutContextOutputRequest;

pub type TransCreateTaskRequest =TransCreateTaskOutputRequest;
pub type TransCreateTaskResponse = TransCreateTaskOutputResponse;

pub type TransControlTaskRequest = TransControlTaskOutputRequest;

pub type TransGetTaskStateRequest = TransGetTaskStateOutputRequest;
pub type TransGetTaskStateResponse = TransGetTaskStateOutputResponse;

pub type TransQueryTasksRequest = TransQueryTasksOutputRequest;
pub type TransQueryTasksResponse = TransQueryTasksOutputResponse;

pub type TransPublishFileRequest = TransPublishFileOutputRequest;
pub type TransPublishFileResponse = TransPublishFileOutputResponse;

pub type TransGetTaskGroupStateRequest = TransGetTaskGroupStateOutputRequest;
pub type TransGetTaskGroupStateResponse = TransGetTaskGroupStateOutputResponse;

pub type TransControlTaskGroupRequest = TransControlTaskGroupOutputRequest;
pub type TransControlTaskGroupResponse = TransControlTaskGroupOutputResponse;