@@ -99,6 +99,28 @@ public static GetFileResponse Unmarshall(UnmarshallerContext _ctx)
99
99
nodeConfiguration_outputList . Add ( nodeInputOutput1 ) ;
100
100
}
101
101
nodeConfiguration . OutputList = nodeConfiguration_outputList ;
102
+
103
+ List < GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_InputContextParameter > nodeConfiguration_inputParameters = new List < GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_InputContextParameter > ( ) ;
104
+ for ( int i = 0 ; i < _ctx . Length ( "GetFile.Data.NodeConfiguration.InputParameters.Length" ) ; i ++ ) {
105
+ GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_InputContextParameter inputContextParameter = new GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_InputContextParameter ( ) ;
106
+ inputContextParameter . ParameterName = _ctx . StringValue ( "GetFile.Data.NodeConfiguration.InputParameters[" + i + "].ParameterName" ) ;
107
+ inputContextParameter . ValueSource = _ctx . StringValue ( "GetFile.Data.NodeConfiguration.InputParameters[" + i + "].ValueSource" ) ;
108
+
109
+ nodeConfiguration_inputParameters . Add ( inputContextParameter ) ;
110
+ }
111
+ nodeConfiguration . InputParameters = nodeConfiguration_inputParameters ;
112
+
113
+ List < GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_OutputContextParameter > nodeConfiguration_outputParameters = new List < GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_OutputContextParameter > ( ) ;
114
+ for ( int i = 0 ; i < _ctx . Length ( "GetFile.Data.NodeConfiguration.OutputParameters.Length" ) ; i ++ ) {
115
+ GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_OutputContextParameter outputContextParameter = new GetFileResponse . GetFile_Data . GetFile_NodeConfiguration . GetFile_OutputContextParameter ( ) ;
116
+ outputContextParameter . ParameterName = _ctx . StringValue ( "GetFile.Data.NodeConfiguration.OutputParameters[" + i + "].ParameterName" ) ;
117
+ outputContextParameter . _Value = _ctx . StringValue ( "GetFile.Data.NodeConfiguration.OutputParameters[" + i + "].Value" ) ;
118
+ outputContextParameter . Type = _ctx . StringValue ( "GetFile.Data.NodeConfiguration.OutputParameters[" + i + "].Type" ) ;
119
+ outputContextParameter . Description = _ctx . StringValue ( "GetFile.Data.NodeConfiguration.OutputParameters[" + i + "].Description" ) ;
120
+
121
+ nodeConfiguration_outputParameters . Add ( outputContextParameter ) ;
122
+ }
123
+ nodeConfiguration . OutputParameters = nodeConfiguration_outputParameters ;
102
124
data . NodeConfiguration = nodeConfiguration ;
103
125
getFileResponse . Data = data ;
104
126
0 commit comments