Skip to content

Commit

Permalink
Init.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Nov 19, 2024
1 parent 4290aa5 commit fab1c98
Show file tree
Hide file tree
Showing 17 changed files with 1,103 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
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`.

Expand Down
64 changes: 64 additions & 0 deletions aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenAnalysisRequest.cs
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);
}
}
}
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 aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepRequest.cs
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 aliyun-net-sdk-aimath/AIMath/Model/V20241114/GenStepResponse.cs
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;
}
}
}
}
Loading

0 comments on commit fab1c98

Please sign in to comment.