diff --git a/CHANGELOG b/CHANGELOG index c7194d9d1..15e2c38a3 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2024-11-19 Version: 1.0.0 +- Init. + 2024-11-18 Version: 1.8.21 - Generated 2017-08-01 for `polardb`. diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisRequest.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisRequest.cs new file mode 100644 index 000000000..c03bc0eee --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisRequest.cs @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; + +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Http; +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.Core.Utils; +using Aliyun.Acs.AIMath; +using Aliyun.Acs.AIMath.Transform; +using Aliyun.Acs.AIMath.Transform.V20241114; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class GenAnalysisRequest : RpcAcsRequest + { + public GenAnalysisRequest() + : base("AIMath", "2024-11-14", "GenAnalysis") + { + Method = MethodType.POST; + } + + private string exerciseContent; + + public string ExerciseContent + { + get + { + return exerciseContent; + } + set + { + exerciseContent = value; + DictionaryUtil.Add(BodyParameters, "ExerciseContent", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GenAnalysisResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GenAnalysisResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisResponse.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisResponse.cs new file mode 100644 index 000000000..94e805427 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisResponse.cs @@ -0,0 +1,98 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class GenAnalysisResponse : AcsResponse + { + + private string requestId; + + private string eventType; + + private string content; + + private string errCode; + + private string errMsg; + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string EventType + { + get + { + return eventType; + } + set + { + eventType = value; + } + } + + public string Content + { + get + { + return content; + } + set + { + content = value; + } + } + + public string ErrCode + { + get + { + return errCode; + } + set + { + errCode = value; + } + } + + public string ErrMsg + { + get + { + return errMsg; + } + set + { + errMsg = value; + } + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepRequest.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepRequest.cs new file mode 100644 index 000000000..3b0ec77b1 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepRequest.cs @@ -0,0 +1,64 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; + +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Http; +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.Core.Utils; +using Aliyun.Acs.AIMath; +using Aliyun.Acs.AIMath.Transform; +using Aliyun.Acs.AIMath.Transform.V20241114; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class GenStepRequest : RpcAcsRequest + { + public GenStepRequest() + : base("AIMath", "2024-11-14", "GenStep") + { + Method = MethodType.POST; + } + + private string exerciseCode; + + public string ExerciseCode + { + get + { + return exerciseCode; + } + set + { + exerciseCode = value; + DictionaryUtil.Add(BodyParameters, "ExerciseCode", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GenStepResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GenStepResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepResponse.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepResponse.cs new file mode 100644 index 000000000..142239e22 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepResponse.cs @@ -0,0 +1,98 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class GenStepResponse : AcsResponse + { + + private string requestId; + + private string eventType; + + private string content; + + private string errCode; + + private string errMsg; + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string EventType + { + get + { + return eventType; + } + set + { + eventType = value; + } + } + + public string Content + { + get + { + return content; + } + set + { + content = value; + } + } + + public string ErrCode + { + get + { + return errCode; + } + set + { + errCode = value; + } + } + + public string ErrMsg + { + get + { + return errMsg; + } + set + { + errMsg = value; + } + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GlobalConfirmRequest.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GlobalConfirmRequest.cs new file mode 100644 index 000000000..42aea57d2 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GlobalConfirmRequest.cs @@ -0,0 +1,80 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; + +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Http; +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.Core.Utils; +using Aliyun.Acs.AIMath; +using Aliyun.Acs.AIMath.Transform; +using Aliyun.Acs.AIMath.Transform.V20241114; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class GlobalConfirmRequest : RpcAcsRequest + { + public GlobalConfirmRequest() + : base("AIMath", "2024-11-14", "GlobalConfirm") + { + Protocol = ProtocolType.HTTPS; + Method = MethodType.POST; + } + + private string tag; + + private string exerciseCode; + + public string Tag + { + get + { + return tag; + } + set + { + tag = value; + DictionaryUtil.Add(BodyParameters, "Tag", value); + } + } + + public string ExerciseCode + { + get + { + return exerciseCode; + } + set + { + exerciseCode = value; + DictionaryUtil.Add(BodyParameters, "ExerciseCode", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GlobalConfirmResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GlobalConfirmResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GlobalConfirmResponse.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GlobalConfirmResponse.cs new file mode 100644 index 000000000..cc7f48f45 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/GlobalConfirmResponse.cs @@ -0,0 +1,84 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class GlobalConfirmResponse : AcsResponse + { + + private string requestId; + + private bool? success; + + private string errCode; + + private string errMsg; + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string ErrCode + { + get + { + return errCode; + } + set + { + errCode = value; + } + } + + public string ErrMsg + { + get + { + return errMsg; + } + set + { + errMsg = value; + } + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateAnalysisRequest.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateAnalysisRequest.cs new file mode 100644 index 000000000..c528eddc9 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateAnalysisRequest.cs @@ -0,0 +1,95 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; + +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Http; +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.Core.Utils; +using Aliyun.Acs.AIMath; +using Aliyun.Acs.AIMath.Transform; +using Aliyun.Acs.AIMath.Transform.V20241114; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class UpdateAnalysisRequest : RpcAcsRequest + { + public UpdateAnalysisRequest() + : base("AIMath", "2024-11-14", "UpdateAnalysis") + { + Protocol = ProtocolType.HTTPS; + Method = MethodType.POST; + } + + private string content; + + private string contentCode; + + private string exerciseCode; + + public string Content + { + get + { + return content; + } + set + { + content = value; + DictionaryUtil.Add(BodyParameters, "Content", value); + } + } + + public string ContentCode + { + get + { + return contentCode; + } + set + { + contentCode = value; + DictionaryUtil.Add(BodyParameters, "ContentCode", value); + } + } + + public string ExerciseCode + { + get + { + return exerciseCode; + } + set + { + exerciseCode = value; + DictionaryUtil.Add(BodyParameters, "ExerciseCode", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override UpdateAnalysisResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return UpdateAnalysisResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateAnalysisResponse.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateAnalysisResponse.cs new file mode 100644 index 000000000..e25f54326 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateAnalysisResponse.cs @@ -0,0 +1,84 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class UpdateAnalysisResponse : AcsResponse + { + + private string requestId; + + private bool? success; + + private string errCode; + + private string errMsg; + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string ErrCode + { + get + { + return errCode; + } + set + { + errCode = value; + } + } + + public string ErrMsg + { + get + { + return errMsg; + } + set + { + errMsg = value; + } + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateStepRequest.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateStepRequest.cs new file mode 100644 index 000000000..ec6cc3790 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateStepRequest.cs @@ -0,0 +1,95 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; + +using Aliyun.Acs.Core; +using Aliyun.Acs.Core.Http; +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.Core.Utils; +using Aliyun.Acs.AIMath; +using Aliyun.Acs.AIMath.Transform; +using Aliyun.Acs.AIMath.Transform.V20241114; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class UpdateStepRequest : RpcAcsRequest + { + public UpdateStepRequest() + : base("AIMath", "2024-11-14", "UpdateStep") + { + Protocol = ProtocolType.HTTPS; + Method = MethodType.POST; + } + + private string content; + + private string contentCode; + + private string exerciseCode; + + public string Content + { + get + { + return content; + } + set + { + content = value; + DictionaryUtil.Add(BodyParameters, "Content", value); + } + } + + public string ContentCode + { + get + { + return contentCode; + } + set + { + contentCode = value; + DictionaryUtil.Add(BodyParameters, "ContentCode", value); + } + } + + public string ExerciseCode + { + get + { + return exerciseCode; + } + set + { + exerciseCode = value; + DictionaryUtil.Add(BodyParameters, "ExerciseCode", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override UpdateStepResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return UpdateStepResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateStepResponse.cs b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateStepResponse.cs new file mode 100644 index 000000000..b59e41138 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Model/V20241114/UpdateStepResponse.cs @@ -0,0 +1,84 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.AIMath.Model.V20241114 +{ + public class UpdateStepResponse : AcsResponse + { + + private string requestId; + + private bool? success; + + private string errCode; + + private string errMsg; + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string ErrCode + { + get + { + return errCode; + } + set + { + errCode = value; + } + } + + public string ErrMsg + { + get + { + return errMsg; + } + set + { + errMsg = value; + } + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GenAnalysisResponseUnmarshaller.cs b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GenAnalysisResponseUnmarshaller.cs new file mode 100644 index 000000000..9dcb0a6b5 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GenAnalysisResponseUnmarshaller.cs @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System; +using System.Collections.Generic; + +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.AIMath.Model.V20241114; + +namespace Aliyun.Acs.AIMath.Transform.V20241114 +{ + public class GenAnalysisResponseUnmarshaller + { + public static GenAnalysisResponse Unmarshall(UnmarshallerContext _ctx) + { + GenAnalysisResponse genAnalysisResponse = new GenAnalysisResponse(); + + genAnalysisResponse.HttpResponse = _ctx.HttpResponse; + genAnalysisResponse.RequestId = _ctx.StringValue("GenAnalysis.RequestId"); + genAnalysisResponse.EventType = _ctx.StringValue("GenAnalysis.EventType"); + genAnalysisResponse.Content = _ctx.StringValue("GenAnalysis.Content"); + genAnalysisResponse.ErrCode = _ctx.StringValue("GenAnalysis.ErrCode"); + genAnalysisResponse.ErrMsg = _ctx.StringValue("GenAnalysis.ErrMsg"); + + return genAnalysisResponse; + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GenStepResponseUnmarshaller.cs b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GenStepResponseUnmarshaller.cs new file mode 100644 index 000000000..f0213dc9f --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GenStepResponseUnmarshaller.cs @@ -0,0 +1,43 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System; +using System.Collections.Generic; + +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.AIMath.Model.V20241114; + +namespace Aliyun.Acs.AIMath.Transform.V20241114 +{ + public class GenStepResponseUnmarshaller + { + public static GenStepResponse Unmarshall(UnmarshallerContext _ctx) + { + GenStepResponse genStepResponse = new GenStepResponse(); + + genStepResponse.HttpResponse = _ctx.HttpResponse; + genStepResponse.RequestId = _ctx.StringValue("GenStep.RequestId"); + genStepResponse.EventType = _ctx.StringValue("GenStep.EventType"); + genStepResponse.Content = _ctx.StringValue("GenStep.Content"); + genStepResponse.ErrCode = _ctx.StringValue("GenStep.ErrCode"); + genStepResponse.ErrMsg = _ctx.StringValue("GenStep.ErrMsg"); + + return genStepResponse; + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GlobalConfirmResponseUnmarshaller.cs b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GlobalConfirmResponseUnmarshaller.cs new file mode 100644 index 000000000..68549c26a --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/GlobalConfirmResponseUnmarshaller.cs @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System; +using System.Collections.Generic; + +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.AIMath.Model.V20241114; + +namespace Aliyun.Acs.AIMath.Transform.V20241114 +{ + public class GlobalConfirmResponseUnmarshaller + { + public static GlobalConfirmResponse Unmarshall(UnmarshallerContext _ctx) + { + GlobalConfirmResponse globalConfirmResponse = new GlobalConfirmResponse(); + + globalConfirmResponse.HttpResponse = _ctx.HttpResponse; + globalConfirmResponse.RequestId = _ctx.StringValue("GlobalConfirm.RequestId"); + globalConfirmResponse.Success = _ctx.BooleanValue("GlobalConfirm.Success"); + globalConfirmResponse.ErrCode = _ctx.StringValue("GlobalConfirm.ErrCode"); + globalConfirmResponse.ErrMsg = _ctx.StringValue("GlobalConfirm.ErrMsg"); + + return globalConfirmResponse; + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/UpdateAnalysisResponseUnmarshaller.cs b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/UpdateAnalysisResponseUnmarshaller.cs new file mode 100644 index 000000000..6aa9c05d0 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/UpdateAnalysisResponseUnmarshaller.cs @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System; +using System.Collections.Generic; + +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.AIMath.Model.V20241114; + +namespace Aliyun.Acs.AIMath.Transform.V20241114 +{ + public class UpdateAnalysisResponseUnmarshaller + { + public static UpdateAnalysisResponse Unmarshall(UnmarshallerContext _ctx) + { + UpdateAnalysisResponse updateAnalysisResponse = new UpdateAnalysisResponse(); + + updateAnalysisResponse.HttpResponse = _ctx.HttpResponse; + updateAnalysisResponse.RequestId = _ctx.StringValue("UpdateAnalysis.RequestId"); + updateAnalysisResponse.Success = _ctx.BooleanValue("UpdateAnalysis.Success"); + updateAnalysisResponse.ErrCode = _ctx.StringValue("UpdateAnalysis.ErrCode"); + updateAnalysisResponse.ErrMsg = _ctx.StringValue("UpdateAnalysis.ErrMsg"); + + return updateAnalysisResponse; + } + } +} diff --git a/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/UpdateStepResponseUnmarshaller.cs b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/UpdateStepResponseUnmarshaller.cs new file mode 100644 index 000000000..bd4384427 --- /dev/null +++ b/aliyun-net-sdk-aimath/AIMath/Transform/V20241114/UpdateStepResponseUnmarshaller.cs @@ -0,0 +1,42 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one + * or more contributor license agreements. See the NOTICE file + * distributed with this work for additional information + * regarding copyright ownership. The ASF licenses this file + * to you under the Apache License, Version 2.0 (the + * "License"); you may not use this file except in compliance + * with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, + * software distributed under the License is distributed on an + * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY + * KIND, either express or implied. See the License for the + * specific language governing permissions and limitations + * under the License. + */ +using System; +using System.Collections.Generic; + +using Aliyun.Acs.Core.Transform; +using Aliyun.Acs.AIMath.Model.V20241114; + +namespace Aliyun.Acs.AIMath.Transform.V20241114 +{ + public class UpdateStepResponseUnmarshaller + { + public static UpdateStepResponse Unmarshall(UnmarshallerContext _ctx) + { + UpdateStepResponse updateStepResponse = new UpdateStepResponse(); + + updateStepResponse.HttpResponse = _ctx.HttpResponse; + updateStepResponse.RequestId = _ctx.StringValue("UpdateStep.RequestId"); + updateStepResponse.Success = _ctx.BooleanValue("UpdateStep.Success"); + updateStepResponse.ErrCode = _ctx.StringValue("UpdateStep.ErrCode"); + updateStepResponse.ErrMsg = _ctx.StringValue("UpdateStep.ErrMsg"); + + return updateStepResponse; + } + } +} diff --git a/aliyun-net-sdk-aimath/aliyun-net-sdk-aimath.vs2017.csproj b/aliyun-net-sdk-aimath/aliyun-net-sdk-aimath.vs2017.csproj new file mode 100644 index 000000000..ecaf4f9a7 --- /dev/null +++ b/aliyun-net-sdk-aimath/aliyun-net-sdk-aimath.vs2017.csproj @@ -0,0 +1,42 @@ + + + + netstandard2.0;net45 + Aliyun.Acs.AIMath + 1.0.0 + Alibaba Cloud + ©2009-2019 Alibaba Cloud + false + https://raw.githubusercontent.com/aliyun/aliyun-openapi-net-sdk/master/LICENSE + https://github.com/aliyun/aliyun-openapi-net-sdk + https://www.alibabacloud.com/favicon.ico + Alibaba Cloud SDK for .NET + + alibaba aliyun SDK AIMath + aliyun-net-sdk-aimath + + + + + + + all + runtime; build; native; contentfiles; analyzers + + + + + + + + + + + + + + + + + + \ No newline at end of file