@@ -106,7 +106,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleJson(APIGatewayProxyR
106106 else result . Result = "Success" ;
107107 result . Command = command ;
108108 result . Logs = Messages . Log ;
109- result . Json = base64Json ;
109+ result . Output = base64Json ;
110110
111111 // return
112112 var response = new APIGatewayProxyResponse
@@ -221,7 +221,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleJsonListiary(APIGatew
221221 else result . Result = "Success" ;
222222 result . Command = command ;
223223 result . Logs = Messages . Log ;
224- result . Json = base64Json ;
224+ result . Output = base64Json ;
225225
226226 // return
227227 var response = new APIGatewayProxyResponse
@@ -336,7 +336,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleXml(APIGatewayProxyRe
336336 else result . Result = "Success" ;
337337 result . Command = command ;
338338 result . Logs = Messages . Log ;
339- result . Json = base64Json ;
339+ result . Output = base64Json ;
340340
341341 // return
342342 var response = new APIGatewayProxyResponse
@@ -451,7 +451,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleHtml(APIGatewayProxyR
451451 else result . Result = "Success" ;
452452 result . Command = command ;
453453 result . Logs = Messages . Log ;
454- result . Json = base64Json ;
454+ result . Output = base64Json ;
455455
456456 // return
457457 var response = new APIGatewayProxyResponse
@@ -566,7 +566,7 @@ public APIGatewayProxyResponse HTranspile_SingleDmlToSingleHtmlPlain(APIGatewayP
566566 else result . Result = "Success" ;
567567 result . Command = command ;
568568 result . Logs = Messages . Log ;
569- result . Json = base64Json ;
569+ result . Output = base64Json ;
570570
571571 // return
572572 var response = new APIGatewayProxyResponse
@@ -605,5 +605,5 @@ public class OutputJson
605605
606606 public string ? Result { get ; set ; }
607607 public string ? Logs { get ; set ; }
608- public string ? Json { get ; set ; }
608+ public string ? Output { get ; set ; }
609609}
0 commit comments