-
Notifications
You must be signed in to change notification settings - Fork 625
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
1,103 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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`. | ||
|
||
|
64 changes: 64 additions & 0 deletions
64
aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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<GenAnalysisResponse> | ||
{ | ||
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); | ||
} | ||
} | ||
} |
98 changes: 98 additions & 0 deletions
98
aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
} | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepRequest.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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<GenStepResponse> | ||
{ | ||
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); | ||
} | ||
} | ||
} |
98 changes: 98 additions & 0 deletions
98
aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepResponse.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.