From 1d806d87fb41d1fd7b6d7d64b456449133cecda4 Mon Sep 17 00:00:00 2001 From: sdk-team Date: Wed, 10 Jul 2024 06:31:36 +0000 Subject: [PATCH] Added param for ActivateLicenseResponse . --- CHANGELOG | 3 + .../Model/V20210118/ActivateLicenseRequest.cs | 124 ++++++ .../V20210118/ActivateLicenseResponse.cs | 56 +++ .../Model/V20210118/CallbackTaskRequest.cs | 364 +++++++++++++++++ .../Model/V20210118/CallbackTaskResponse.cs | 168 ++++++++ .../DescribeAgreementStatusRequest.cs | 64 +++ .../DescribeAgreementStatusResponse.cs | 84 ++++ ...nerateUploadFilePolicyForPartnerRequest.cs | 95 +++++ ...erateUploadFilePolicyForPartnerResponse.cs | 284 +++++++++++++ .../Model/V20210118/GetNodeByFlowIdRequest.cs | 274 +++++++++++++ .../V20210118/GetNodeByFlowIdResponse.cs | 168 ++++++++ .../V20210118/GetNodeByTemplateIdRequest.cs | 274 +++++++++++++ .../V20210118/GetNodeByTemplateIdResponse.cs | 168 ++++++++ .../Model/V20210118/GetProxyByTypeRequest.cs | 274 +++++++++++++ .../Model/V20210118/GetProxyByTypeResponse.cs | 168 ++++++++ .../Model/V20210118/GetRedisValueRequest.cs | 304 ++++++++++++++ .../Model/V20210118/GetRedisValueResponse.cs | 168 ++++++++ .../Model/V20210118/GetVariableRequest.cs | 274 +++++++++++++ .../Model/V20210118/GetVariableResponse.cs | 168 ++++++++ .../Model/V20210118/IdentifyCodeRequest.cs | 304 ++++++++++++++ .../Model/V20210118/IdentifyCodeResponse.cs | 168 ++++++++ .../Model/V20210118/PullRpaModelRequest.cs | 259 ++++++++++++ .../Model/V20210118/PullRpaModelResponse.cs | 168 ++++++++ .../Mseap/Model/V20210118/PullTaskRequest.cs | 319 +++++++++++++++ .../Mseap/Model/V20210118/PullTaskResponse.cs | 270 +++++++++++++ .../V20210118/PushRpaTaskDetailRequest.cs | 379 ++++++++++++++++++ .../V20210118/PushRpaTaskDetailResponse.cs | 168 ++++++++ .../Model/V20210118/PushRpaTaskRequest.cs | 334 +++++++++++++++ .../Model/V20210118/PushRpaTaskResponse.cs | 168 ++++++++ .../Model/V20210118/SetRedisValueRequest.cs | 304 ++++++++++++++ .../Model/V20210118/SetRedisValueResponse.cs | 168 ++++++++ .../V20210118/UpdateAgreementStatusRequest.cs | 64 +++ .../UpdateAgreementStatusResponse.cs | 42 ++ .../ActivateLicenseResponseUnmarshaller.cs | 40 ++ .../CallbackTaskResponseUnmarshaller.cs | 48 +++ ...ribeAgreementStatusResponseUnmarshaller.cs | 42 ++ ...ilePolicyForPartnerResponseUnmarshaller.cs | 63 +++ .../GetNodeByFlowIdResponseUnmarshaller.cs | 48 +++ ...GetNodeByTemplateIdResponseUnmarshaller.cs | 48 +++ .../GetProxyByTypeResponseUnmarshaller.cs | 48 +++ .../GetRedisValueResponseUnmarshaller.cs | 48 +++ .../GetVariableResponseUnmarshaller.cs | 48 +++ .../IdentifyCodeResponseUnmarshaller.cs | 48 +++ .../PullRpaModelResponseUnmarshaller.cs | 48 +++ .../V20210118/PullTaskResponseUnmarshaller.cs | 57 +++ .../PushRpaTaskDetailResponseUnmarshaller.cs | 48 +++ .../PushRpaTaskResponseUnmarshaller.cs | 48 +++ .../SetRedisValueResponseUnmarshaller.cs | 48 +++ ...dateAgreementStatusResponseUnmarshaller.cs | 39 ++ .../aliyun-net-sdk-mseap.vs2017.csproj | 43 ++ 50 files changed, 7409 insertions(+) create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusRequest.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusResponse.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/ActivateLicenseResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/CallbackTaskResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/DescribeAgreementStatusResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GenerateUploadFilePolicyForPartnerResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByFlowIdResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByTemplateIdResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetProxyByTypeResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetRedisValueResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetVariableResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/IdentifyCodeResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullRpaModelResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullTaskResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskDetailResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/SetRedisValueResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/Mseap/Transform/V20210118/UpdateAgreementStatusResponseUnmarshaller.cs create mode 100644 aliyun-net-sdk-mseap/aliyun-net-sdk-mseap.vs2017.csproj diff --git a/CHANGELOG b/CHANGELOG index 763f6e1f2..aa6d10b7a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,6 @@ +2024-07-10 Version: 1.0.0 +- Added param for ActivateLicenseResponse . + 2024-07-05 Version: 3.9.56 - Update to support new apis. diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseRequest.cs new file mode 100644 index 000000000..7c10be4f2 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseRequest.cs @@ -0,0 +1,124 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class ActivateLicenseRequest : RpcAcsRequest + { + public ActivateLicenseRequest() + : base("mseap", "2021-01-18", "ActivateLicense") + { + Method = MethodType.POST; + } + + private string licenseNo; + + private string bizType; + + private string licensePublisher; + + private string bizId; + + private string licenseCode; + + public string LicenseNo + { + get + { + return licenseNo; + } + set + { + licenseNo = value; + DictionaryUtil.Add(QueryParameters, "LicenseNo", value); + } + } + + public string BizType + { + get + { + return bizType; + } + set + { + bizType = value; + DictionaryUtil.Add(QueryParameters, "BizType", value); + } + } + + public string LicensePublisher + { + get + { + return licensePublisher; + } + set + { + licensePublisher = value; + DictionaryUtil.Add(QueryParameters, "LicensePublisher", value); + } + } + + public string BizId + { + get + { + return bizId; + } + set + { + bizId = value; + DictionaryUtil.Add(QueryParameters, "BizId", value); + } + } + + public string LicenseCode + { + get + { + return licenseCode; + } + set + { + licenseCode = value; + DictionaryUtil.Add(QueryParameters, "LicenseCode", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override ActivateLicenseResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return ActivateLicenseResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseResponse.cs new file mode 100644 index 000000000..72310e0dc --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseResponse.cs @@ -0,0 +1,56 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class ActivateLicenseResponse : AcsResponse + { + + private bool? data; + + private string requestId; + + public bool? Data + { + get + { + return data; + } + set + { + data = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskRequest.cs new file mode 100644 index 000000000..db3494dbd --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskRequest.cs @@ -0,0 +1,364 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class CallbackTaskRequest : RpcAcsRequest + { + public CallbackTaskRequest() + : base("mseap", "2021-01-18", "CallbackTask") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string outTaskId; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string taskId; + + private string userCallerType; + + private string taskType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string orderId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private string principalKey; + + private bool? userCallerSecurityTransport; + + private string bizCode; + + private string userClientIp; + + private string taskData; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string OutTaskId + { + get + { + return outTaskId; + } + set + { + outTaskId = value; + DictionaryUtil.Add(QueryParameters, "OutTaskId", value); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string TaskId + { + get + { + return taskId; + } + set + { + taskId = value; + DictionaryUtil.Add(QueryParameters, "TaskId", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string TaskType + { + get + { + return taskType; + } + set + { + taskType = value; + DictionaryUtil.Add(QueryParameters, "TaskType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string OrderId + { + get + { + return orderId; + } + set + { + orderId = value; + DictionaryUtil.Add(QueryParameters, "OrderId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public string PrincipalKey + { + get + { + return principalKey; + } + set + { + principalKey = value; + DictionaryUtil.Add(QueryParameters, "PrincipalKey", value); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string BizCode + { + get + { + return bizCode; + } + set + { + bizCode = value; + DictionaryUtil.Add(QueryParameters, "BizCode", value); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string TaskData + { + get + { + return taskData; + } + set + { + taskData = value; + DictionaryUtil.Add(QueryParameters, "TaskData", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override CallbackTaskResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return CallbackTaskResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskResponse.cs new file mode 100644 index 000000000..f967972d9 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/CallbackTaskResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class CallbackTaskResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private bool? module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public bool? Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusRequest.cs new file mode 100644 index 000000000..55b8b9024 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusRequest.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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class DescribeAgreementStatusRequest : RpcAcsRequest + { + public DescribeAgreementStatusRequest() + : base("mseap", "2021-01-18", "DescribeAgreementStatus") + { + Method = MethodType.POST; + } + + private string agreementCode; + + public string AgreementCode + { + get + { + return agreementCode; + } + set + { + agreementCode = value; + DictionaryUtil.Add(QueryParameters, "AgreementCode", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override DescribeAgreementStatusResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return DescribeAgreementStatusResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusResponse.cs new file mode 100644 index 000000000..4c4ff26a6 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/DescribeAgreementStatusResponse.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.mseap.Model.V20210118 +{ + public class DescribeAgreementStatusResponse : AcsResponse + { + + private int? status; + + private string requestId; + + private string agreementCode; + + private string userId; + + public int? Status + { + get + { + return status; + } + set + { + status = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string AgreementCode + { + get + { + return agreementCode; + } + set + { + agreementCode = value; + } + } + + public string UserId + { + get + { + return userId; + } + set + { + userId = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerRequest.cs new file mode 100644 index 000000000..3348607bd --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerRequest.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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class GenerateUploadFilePolicyForPartnerRequest : RpcAcsRequest + { + public GenerateUploadFilePolicyForPartnerRequest() + : base("mseap", "2021-01-18", "GenerateUploadFilePolicyForPartner") + { + Protocol = ProtocolType.HTTPS; + Method = MethodType.POST; + } + + private string fileType; + + private string bizType; + + private string fileName; + + public string FileType + { + get + { + return fileType; + } + set + { + fileType = value; + DictionaryUtil.Add(QueryParameters, "FileType", value); + } + } + + public string BizType + { + get + { + return bizType; + } + set + { + bizType = value; + DictionaryUtil.Add(QueryParameters, "BizType", value); + } + } + + public string FileName + { + get + { + return fileName; + } + set + { + fileName = value; + DictionaryUtil.Add(QueryParameters, "FileName", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GenerateUploadFilePolicyForPartnerResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GenerateUploadFilePolicyForPartnerResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerResponse.cs new file mode 100644 index 000000000..c993a4bb7 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GenerateUploadFilePolicyForPartnerResponse.cs @@ -0,0 +1,284 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class GenerateUploadFilePolicyForPartnerResponse : AcsResponse + { + + private string requestId; + + private int? httpStatusCode; + + private string dynamicCode; + + private string dynamicMessage; + + private string errorMsg; + + private string errorCode; + + private bool? success; + + private bool? allowRetry; + + private string appName; + + private List errorArgs; + + private GenerateUploadFilePolicyForPartner_Module module; + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + + public List ErrorArgs + { + get + { + return errorArgs; + } + set + { + errorArgs = value; + } + } + + public GenerateUploadFilePolicyForPartner_Module Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public class GenerateUploadFilePolicyForPartner_Module + { + + private string accessId; + + private string encodedPolicy; + + private string signature; + + private string fileDir; + + private string host; + + private long? expireTime; + + private string ossUrl; + + public string AccessId + { + get + { + return accessId; + } + set + { + accessId = value; + } + } + + public string EncodedPolicy + { + get + { + return encodedPolicy; + } + set + { + encodedPolicy = value; + } + } + + public string Signature + { + get + { + return signature; + } + set + { + signature = value; + } + } + + public string FileDir + { + get + { + return fileDir; + } + set + { + fileDir = value; + } + } + + public string Host + { + get + { + return host; + } + set + { + host = value; + } + } + + public long? ExpireTime + { + get + { + return expireTime; + } + set + { + expireTime = value; + } + } + + public string OssUrl + { + get + { + return ossUrl; + } + set + { + ossUrl = value; + } + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdRequest.cs new file mode 100644 index 000000000..d8fe42ce9 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdRequest.cs @@ -0,0 +1,274 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class GetNodeByFlowIdRequest : RpcAcsRequest + { + public GetNodeByFlowIdRequest() + : base("mseap", "2021-01-18", "GetNodeByFlowId") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private bool? userCallerSecurityTransport; + + private string userClientIp; + + private string bid; + + private long? flowId; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public long? FlowId + { + get + { + return flowId; + } + set + { + flowId = value; + DictionaryUtil.Add(QueryParameters, "FlowId", value.ToString()); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GetNodeByFlowIdResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GetNodeByFlowIdResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdResponse.cs new file mode 100644 index 000000000..ef52225b8 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByFlowIdResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class GetNodeByFlowIdResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdRequest.cs new file mode 100644 index 000000000..9ec5120c8 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdRequest.cs @@ -0,0 +1,274 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class GetNodeByTemplateIdRequest : RpcAcsRequest + { + public GetNodeByTemplateIdRequest() + : base("mseap", "2021-01-18", "GetNodeByTemplateId") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private long? templateId; + + private bool? userCallerSecurityTransport; + + private string userClientIp; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public long? TemplateId + { + get + { + return templateId; + } + set + { + templateId = value; + DictionaryUtil.Add(QueryParameters, "TemplateId", value.ToString()); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GetNodeByTemplateIdResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GetNodeByTemplateIdResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdResponse.cs new file mode 100644 index 000000000..97d0222ce --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetNodeByTemplateIdResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class GetNodeByTemplateIdResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeRequest.cs new file mode 100644 index 000000000..70ef48ba9 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeRequest.cs @@ -0,0 +1,274 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class GetProxyByTypeRequest : RpcAcsRequest + { + public GetProxyByTypeRequest() + : base("mseap", "2021-01-18", "GetProxyByType") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private int? type; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private bool? userCallerSecurityTransport; + + private string userClientIp; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public int? Type + { + get + { + return type; + } + set + { + type = value; + DictionaryUtil.Add(QueryParameters, "Type", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GetProxyByTypeResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GetProxyByTypeResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeResponse.cs new file mode 100644 index 000000000..f311e1fb3 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetProxyByTypeResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class GetProxyByTypeResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueRequest.cs new file mode 100644 index 000000000..561183703 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueRequest.cs @@ -0,0 +1,304 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class GetRedisValueRequest : RpcAcsRequest + { + public GetRedisValueRequest() + : base("mseap", "2021-01-18", "GetRedisValue") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private long? timeout; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string _value; + + private string key; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private bool? userCallerSecurityTransport; + + private string userClientIp; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public long? Timeout + { + get + { + return timeout; + } + set + { + timeout = value; + DictionaryUtil.Add(QueryParameters, "Timeout", value.ToString()); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string _Value + { + get + { + return _value; + } + set + { + _value = value; + DictionaryUtil.Add(QueryParameters, "Value", value); + } + } + + public string Key + { + get + { + return key; + } + set + { + key = value; + DictionaryUtil.Add(QueryParameters, "Key", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GetRedisValueResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GetRedisValueResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueResponse.cs new file mode 100644 index 000000000..ce68ebe58 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetRedisValueResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class GetRedisValueResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableRequest.cs new file mode 100644 index 000000000..b72c4d9db --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableRequest.cs @@ -0,0 +1,274 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class GetVariableRequest : RpcAcsRequest + { + public GetVariableRequest() + : base("mseap", "2021-01-18", "GetVariable") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private long? templateId; + + private bool? userCallerSecurityTransport; + + private string userClientIp; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public long? TemplateId + { + get + { + return templateId; + } + set + { + templateId = value; + DictionaryUtil.Add(QueryParameters, "TemplateId", value.ToString()); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override GetVariableResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return GetVariableResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableResponse.cs new file mode 100644 index 000000000..efd469b68 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/GetVariableResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class GetVariableResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeRequest.cs new file mode 100644 index 000000000..891216c7b --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeRequest.cs @@ -0,0 +1,304 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class IdentifyCodeRequest : RpcAcsRequest + { + public IdentifyCodeRequest() + : base("mseap", "2021-01-18", "IdentifyCode") + { + Method = MethodType.POST; + } + + private string data; + + private long? userCallerParentId; + + private string type; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private string label; + + private bool? userCallerSecurityTransport; + + private string userClientIp; + + private string bid; + + public string Data + { + get + { + return data; + } + set + { + data = value; + DictionaryUtil.Add(QueryParameters, "Data", value); + } + } + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string Type + { + get + { + return type; + } + set + { + type = value; + DictionaryUtil.Add(QueryParameters, "Type", value); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public string Label + { + get + { + return label; + } + set + { + label = value; + DictionaryUtil.Add(QueryParameters, "Label", value); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override IdentifyCodeResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return IdentifyCodeResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeResponse.cs new file mode 100644 index 000000000..97f5d657f --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/IdentifyCodeResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class IdentifyCodeResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelRequest.cs new file mode 100644 index 000000000..a28fd24e4 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelRequest.cs @@ -0,0 +1,259 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class PullRpaModelRequest : RpcAcsRequest + { + public PullRpaModelRequest() + : base("mseap", "2021-01-18", "PullRpaModel") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private long? templateId; + + private string userClientIp; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public long? TemplateId + { + get + { + return templateId; + } + set + { + templateId = value; + DictionaryUtil.Add(QueryParameters, "TemplateId", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override PullRpaModelResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return PullRpaModelResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelResponse.cs new file mode 100644 index 000000000..ff05f5ffd --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullRpaModelResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class PullRpaModelResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskRequest.cs new file mode 100644 index 000000000..88290d3b1 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskRequest.cs @@ -0,0 +1,319 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class PullTaskRequest : RpcAcsRequest + { + public PullTaskRequest() + : base("mseap", "2021-01-18", "PullTask") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string userCallerType; + + private string taskType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string orderId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private string principalKey; + + private bool? userCallerSecurityTransport; + + private string bizCode; + + private string userClientIp; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string TaskType + { + get + { + return taskType; + } + set + { + taskType = value; + DictionaryUtil.Add(QueryParameters, "TaskType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string OrderId + { + get + { + return orderId; + } + set + { + orderId = value; + DictionaryUtil.Add(QueryParameters, "OrderId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public string PrincipalKey + { + get + { + return principalKey; + } + set + { + principalKey = value; + DictionaryUtil.Add(QueryParameters, "PrincipalKey", value); + } + } + + public bool? UserCallerSecurityTransport + { + get + { + return userCallerSecurityTransport; + } + set + { + userCallerSecurityTransport = value; + DictionaryUtil.Add(QueryParameters, "UserCallerSecurityTransport", value.ToString()); + } + } + + public string BizCode + { + get + { + return bizCode; + } + set + { + bizCode = value; + DictionaryUtil.Add(QueryParameters, "BizCode", value); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override PullTaskResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return PullTaskResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskResponse.cs new file mode 100644 index 000000000..635fd49a7 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PullTaskResponse.cs @@ -0,0 +1,270 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class PullTaskResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private bool? success; + + private string appName; + + private PullTask_Module module; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + + public PullTask_Module Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public class PullTask_Module + { + + private string taskId; + + private string outTaskId; + + private string taskType; + + private string taskData; + + private string orderId; + + private string bizCode; + + private string principalKey; + + public string TaskId + { + get + { + return taskId; + } + set + { + taskId = value; + } + } + + public string OutTaskId + { + get + { + return outTaskId; + } + set + { + outTaskId = value; + } + } + + public string TaskType + { + get + { + return taskType; + } + set + { + taskType = value; + } + } + + public string TaskData + { + get + { + return taskData; + } + set + { + taskData = value; + } + } + + public string OrderId + { + get + { + return orderId; + } + set + { + orderId = value; + } + } + + public string BizCode + { + get + { + return bizCode; + } + set + { + bizCode = value; + } + } + + public string PrincipalKey + { + get + { + return principalKey; + } + set + { + principalKey = value; + } + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailRequest.cs new file mode 100644 index 000000000..e86dfdb4c --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailRequest.cs @@ -0,0 +1,379 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class PushRpaTaskDetailRequest : RpcAcsRequest + { + public PushRpaTaskDetailRequest() + : base("mseap", "2021-01-18", "PushRpaTaskDetail") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private long? modelDetailId; + + private string userKp; + + private string lang; + + private long? taskId; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private string inputScreenshot; + + private string inputData; + + private string outputData; + + private string inputHtml; + + private long? taskDetailId; + + private string outputHtml; + + private string userClientIp; + + private string bid; + + private string outputScreenshot; + + private int? status; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public long? ModelDetailId + { + get + { + return modelDetailId; + } + set + { + modelDetailId = value; + DictionaryUtil.Add(QueryParameters, "ModelDetailId", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public long? TaskId + { + get + { + return taskId; + } + set + { + taskId = value; + DictionaryUtil.Add(QueryParameters, "TaskId", value.ToString()); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public string InputScreenshot + { + get + { + return inputScreenshot; + } + set + { + inputScreenshot = value; + DictionaryUtil.Add(QueryParameters, "InputScreenshot", value); + } + } + + public string InputData + { + get + { + return inputData; + } + set + { + inputData = value; + DictionaryUtil.Add(QueryParameters, "InputData", value); + } + } + + public string OutputData + { + get + { + return outputData; + } + set + { + outputData = value; + DictionaryUtil.Add(QueryParameters, "OutputData", value); + } + } + + public string InputHtml + { + get + { + return inputHtml; + } + set + { + inputHtml = value; + DictionaryUtil.Add(QueryParameters, "InputHtml", value); + } + } + + public long? TaskDetailId + { + get + { + return taskDetailId; + } + set + { + taskDetailId = value; + DictionaryUtil.Add(QueryParameters, "TaskDetailId", value.ToString()); + } + } + + public string OutputHtml + { + get + { + return outputHtml; + } + set + { + outputHtml = value; + DictionaryUtil.Add(QueryParameters, "OutputHtml", value); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public string OutputScreenshot + { + get + { + return outputScreenshot; + } + set + { + outputScreenshot = value; + DictionaryUtil.Add(QueryParameters, "OutputScreenshot", value); + } + } + + public int? Status + { + get + { + return status; + } + set + { + status = value; + DictionaryUtil.Add(QueryParameters, "Status", value.ToString()); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override PushRpaTaskDetailResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return PushRpaTaskDetailResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailResponse.cs new file mode 100644 index 000000000..9a3ea4c97 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskDetailResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class PushRpaTaskDetailResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskRequest.cs new file mode 100644 index 000000000..39557b8d3 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskRequest.cs @@ -0,0 +1,334 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class PushRpaTaskRequest : RpcAcsRequest + { + public PushRpaTaskRequest() + : base("mseap", "2021-01-18", "PushRpaTask") + { + Method = MethodType.POST; + } + + private string request; + + private long? userCallerParentId; + + private string apiType; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private long? taskId; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private long? modelId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private long? templateId; + + private string userClientIp; + + private string name; + + private string bid; + + private int? status; + + public string Request + { + get + { + return request; + } + set + { + request = value; + DictionaryUtil.Add(QueryParameters, "Request", value); + } + } + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public long? TaskId + { + get + { + return taskId; + } + set + { + taskId = value; + DictionaryUtil.Add(QueryParameters, "TaskId", value.ToString()); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public long? ModelId + { + get + { + return modelId; + } + set + { + modelId = value; + DictionaryUtil.Add(QueryParameters, "ModelId", value.ToString()); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public long? TemplateId + { + get + { + return templateId; + } + set + { + templateId = value; + DictionaryUtil.Add(QueryParameters, "TemplateId", value.ToString()); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Name + { + get + { + return name; + } + set + { + name = value; + DictionaryUtil.Add(QueryParameters, "Name", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public int? Status + { + get + { + return status; + } + set + { + status = value; + DictionaryUtil.Add(QueryParameters, "Status", value.ToString()); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override PushRpaTaskResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return PushRpaTaskResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskResponse.cs new file mode 100644 index 000000000..e29ecda5d --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/PushRpaTaskResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class PushRpaTaskResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private string module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public string Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueRequest.cs new file mode 100644 index 000000000..a0c5a1617 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueRequest.cs @@ -0,0 +1,304 @@ +/* + * 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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class SetRedisValueRequest : RpcAcsRequest + { + public SetRedisValueRequest() + : base("mseap", "2021-01-18", "SetRedisValue") + { + Method = MethodType.POST; + } + + private long? userCallerParentId; + + private string apiType; + + private long? timeout; + + private bool? userMfaPresent; + + private string userKp; + + private string lang; + + private string _value; + + private string key; + + private string userCallerType; + + private string userSecurityToken; + + private string userAccessKeyId; + + private string aliyunKp; + + private string userBid; + + private string originalRequest; + + private string requestId; + + private string userClientIp; + + private string bid; + + public long? UserCallerParentId + { + get + { + return userCallerParentId; + } + set + { + userCallerParentId = value; + DictionaryUtil.Add(QueryParameters, "UserCallerParentId", value.ToString()); + } + } + + public string ApiType + { + get + { + return apiType; + } + set + { + apiType = value; + DictionaryUtil.Add(QueryParameters, "ApiType", value); + } + } + + public long? Timeout + { + get + { + return timeout; + } + set + { + timeout = value; + DictionaryUtil.Add(QueryParameters, "Timeout", value.ToString()); + } + } + + public bool? UserMfaPresent + { + get + { + return userMfaPresent; + } + set + { + userMfaPresent = value; + DictionaryUtil.Add(QueryParameters, "UserMfaPresent", value.ToString()); + } + } + + public string UserKp + { + get + { + return userKp; + } + set + { + userKp = value; + DictionaryUtil.Add(QueryParameters, "UserKp", value); + } + } + + public string Lang + { + get + { + return lang; + } + set + { + lang = value; + DictionaryUtil.Add(QueryParameters, "Lang", value); + } + } + + public string _Value + { + get + { + return _value; + } + set + { + _value = value; + DictionaryUtil.Add(QueryParameters, "Value", value); + } + } + + public string Key + { + get + { + return key; + } + set + { + key = value; + DictionaryUtil.Add(QueryParameters, "Key", value); + } + } + + public string UserCallerType + { + get + { + return userCallerType; + } + set + { + userCallerType = value; + DictionaryUtil.Add(QueryParameters, "UserCallerType", value); + } + } + + public string UserSecurityToken + { + get + { + return userSecurityToken; + } + set + { + userSecurityToken = value; + DictionaryUtil.Add(QueryParameters, "UserSecurityToken", value); + } + } + + public string UserAccessKeyId + { + get + { + return userAccessKeyId; + } + set + { + userAccessKeyId = value; + DictionaryUtil.Add(QueryParameters, "UserAccessKeyId", value); + } + } + + public string AliyunKp + { + get + { + return aliyunKp; + } + set + { + aliyunKp = value; + DictionaryUtil.Add(QueryParameters, "AliyunKp", value); + } + } + + public string UserBid + { + get + { + return userBid; + } + set + { + userBid = value; + DictionaryUtil.Add(QueryParameters, "UserBid", value); + } + } + + public string OriginalRequest + { + get + { + return originalRequest; + } + set + { + originalRequest = value; + DictionaryUtil.Add(QueryParameters, "OriginalRequest", value); + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + DictionaryUtil.Add(QueryParameters, "RequestId", value); + } + } + + public string UserClientIp + { + get + { + return userClientIp; + } + set + { + userClientIp = value; + DictionaryUtil.Add(QueryParameters, "UserClientIp", value); + } + } + + public string Bid + { + get + { + return bid; + } + set + { + bid = value; + DictionaryUtil.Add(QueryParameters, "Bid", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override SetRedisValueResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return SetRedisValueResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueResponse.cs new file mode 100644 index 000000000..1ad730c88 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/SetRedisValueResponse.cs @@ -0,0 +1,168 @@ +/* + * 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.mseap.Model.V20210118 +{ + public class SetRedisValueResponse : AcsResponse + { + + private bool? allowRetry; + + private string requestId; + + private string errorMsg; + + private int? httpStatusCode; + + private string dynamicCode; + + private string errorCode; + + private string dynamicMessage; + + private bool? module; + + private bool? success; + + private string appName; + + public bool? AllowRetry + { + get + { + return allowRetry; + } + set + { + allowRetry = value; + } + } + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + + public string ErrorMsg + { + get + { + return errorMsg; + } + set + { + errorMsg = value; + } + } + + public int? HttpStatusCode + { + get + { + return httpStatusCode; + } + set + { + httpStatusCode = value; + } + } + + public string DynamicCode + { + get + { + return dynamicCode; + } + set + { + dynamicCode = value; + } + } + + public string ErrorCode + { + get + { + return errorCode; + } + set + { + errorCode = value; + } + } + + public string DynamicMessage + { + get + { + return dynamicMessage; + } + set + { + dynamicMessage = value; + } + } + + public bool? Module + { + get + { + return module; + } + set + { + module = value; + } + } + + public bool? Success + { + get + { + return success; + } + set + { + success = value; + } + } + + public string AppName + { + get + { + return appName; + } + set + { + appName = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusRequest.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusRequest.cs new file mode 100644 index 000000000..84b39f747 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusRequest.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.mseap; +using Aliyun.Acs.mseap.Transform; +using Aliyun.Acs.mseap.Transform.V20210118; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class UpdateAgreementStatusRequest : RpcAcsRequest + { + public UpdateAgreementStatusRequest() + : base("mseap", "2021-01-18", "UpdateAgreementStatus") + { + Method = MethodType.POST; + } + + private string agreementCode; + + public string AgreementCode + { + get + { + return agreementCode; + } + set + { + agreementCode = value; + DictionaryUtil.Add(QueryParameters, "AgreementCode", value); + } + } + + public override bool CheckShowJsonItemName() + { + return false; + } + + public override UpdateAgreementStatusResponse GetResponse(UnmarshallerContext unmarshallerContext) + { + return UpdateAgreementStatusResponseUnmarshaller.Unmarshall(unmarshallerContext); + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusResponse.cs b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusResponse.cs new file mode 100644 index 000000000..0fe2e25b2 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Model/V20210118/UpdateAgreementStatusResponse.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.Collections.Generic; +using Newtonsoft.Json; +using Aliyun.Acs.Core; + +namespace Aliyun.Acs.mseap.Model.V20210118 +{ + public class UpdateAgreementStatusResponse : AcsResponse + { + + private string requestId; + + public string RequestId + { + get + { + return requestId; + } + set + { + requestId = value; + } + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/ActivateLicenseResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/ActivateLicenseResponseUnmarshaller.cs new file mode 100644 index 000000000..d9409069f --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/ActivateLicenseResponseUnmarshaller.cs @@ -0,0 +1,40 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class ActivateLicenseResponseUnmarshaller + { + public static ActivateLicenseResponse Unmarshall(UnmarshallerContext _ctx) + { + ActivateLicenseResponse activateLicenseResponse = new ActivateLicenseResponse(); + + activateLicenseResponse.HttpResponse = _ctx.HttpResponse; + activateLicenseResponse.Data = _ctx.BooleanValue("ActivateLicense.Data"); + activateLicenseResponse.RequestId = _ctx.StringValue("ActivateLicense.RequestId"); + + return activateLicenseResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/CallbackTaskResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/CallbackTaskResponseUnmarshaller.cs new file mode 100644 index 000000000..a7fa1c248 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/CallbackTaskResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class CallbackTaskResponseUnmarshaller + { + public static CallbackTaskResponse Unmarshall(UnmarshallerContext _ctx) + { + CallbackTaskResponse callbackTaskResponse = new CallbackTaskResponse(); + + callbackTaskResponse.HttpResponse = _ctx.HttpResponse; + callbackTaskResponse.AllowRetry = _ctx.BooleanValue("CallbackTask.AllowRetry"); + callbackTaskResponse.RequestId = _ctx.StringValue("CallbackTask.RequestId"); + callbackTaskResponse.ErrorMsg = _ctx.StringValue("CallbackTask.ErrorMsg"); + callbackTaskResponse.HttpStatusCode = _ctx.IntegerValue("CallbackTask.HttpStatusCode"); + callbackTaskResponse.DynamicCode = _ctx.StringValue("CallbackTask.DynamicCode"); + callbackTaskResponse.ErrorCode = _ctx.StringValue("CallbackTask.ErrorCode"); + callbackTaskResponse.DynamicMessage = _ctx.StringValue("CallbackTask.DynamicMessage"); + callbackTaskResponse.Module = _ctx.BooleanValue("CallbackTask.Module"); + callbackTaskResponse.Success = _ctx.BooleanValue("CallbackTask.Success"); + callbackTaskResponse.AppName = _ctx.StringValue("CallbackTask.AppName"); + + return callbackTaskResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/DescribeAgreementStatusResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/DescribeAgreementStatusResponseUnmarshaller.cs new file mode 100644 index 000000000..43e6e0b7d --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/DescribeAgreementStatusResponseUnmarshaller.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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class DescribeAgreementStatusResponseUnmarshaller + { + public static DescribeAgreementStatusResponse Unmarshall(UnmarshallerContext _ctx) + { + DescribeAgreementStatusResponse describeAgreementStatusResponse = new DescribeAgreementStatusResponse(); + + describeAgreementStatusResponse.HttpResponse = _ctx.HttpResponse; + describeAgreementStatusResponse.Status = _ctx.IntegerValue("DescribeAgreementStatus.Status"); + describeAgreementStatusResponse.RequestId = _ctx.StringValue("DescribeAgreementStatus.RequestId"); + describeAgreementStatusResponse.AgreementCode = _ctx.StringValue("DescribeAgreementStatus.AgreementCode"); + describeAgreementStatusResponse.UserId = _ctx.StringValue("DescribeAgreementStatus.UserId"); + + return describeAgreementStatusResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GenerateUploadFilePolicyForPartnerResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GenerateUploadFilePolicyForPartnerResponseUnmarshaller.cs new file mode 100644 index 000000000..376867363 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GenerateUploadFilePolicyForPartnerResponseUnmarshaller.cs @@ -0,0 +1,63 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class GenerateUploadFilePolicyForPartnerResponseUnmarshaller + { + public static GenerateUploadFilePolicyForPartnerResponse Unmarshall(UnmarshallerContext _ctx) + { + GenerateUploadFilePolicyForPartnerResponse generateUploadFilePolicyForPartnerResponse = new GenerateUploadFilePolicyForPartnerResponse(); + + generateUploadFilePolicyForPartnerResponse.HttpResponse = _ctx.HttpResponse; + generateUploadFilePolicyForPartnerResponse.RequestId = _ctx.StringValue("GenerateUploadFilePolicyForPartner.RequestId"); + generateUploadFilePolicyForPartnerResponse.HttpStatusCode = _ctx.IntegerValue("GenerateUploadFilePolicyForPartner.HttpStatusCode"); + generateUploadFilePolicyForPartnerResponse.DynamicCode = _ctx.StringValue("GenerateUploadFilePolicyForPartner.DynamicCode"); + generateUploadFilePolicyForPartnerResponse.DynamicMessage = _ctx.StringValue("GenerateUploadFilePolicyForPartner.DynamicMessage"); + generateUploadFilePolicyForPartnerResponse.ErrorMsg = _ctx.StringValue("GenerateUploadFilePolicyForPartner.ErrorMsg"); + generateUploadFilePolicyForPartnerResponse.ErrorCode = _ctx.StringValue("GenerateUploadFilePolicyForPartner.ErrorCode"); + generateUploadFilePolicyForPartnerResponse.Success = _ctx.BooleanValue("GenerateUploadFilePolicyForPartner.Success"); + generateUploadFilePolicyForPartnerResponse.AllowRetry = _ctx.BooleanValue("GenerateUploadFilePolicyForPartner.AllowRetry"); + generateUploadFilePolicyForPartnerResponse.AppName = _ctx.StringValue("GenerateUploadFilePolicyForPartner.AppName"); + + List generateUploadFilePolicyForPartnerResponse_errorArgs = new List(); + for (int i = 0; i < _ctx.Length("GenerateUploadFilePolicyForPartner.ErrorArgs.Length"); i++) { + generateUploadFilePolicyForPartnerResponse_errorArgs.Add(_ctx.StringValue("GenerateUploadFilePolicyForPartner.ErrorArgs["+ i +"]")); + } + generateUploadFilePolicyForPartnerResponse.ErrorArgs = generateUploadFilePolicyForPartnerResponse_errorArgs; + + GenerateUploadFilePolicyForPartnerResponse.GenerateUploadFilePolicyForPartner_Module module = new GenerateUploadFilePolicyForPartnerResponse.GenerateUploadFilePolicyForPartner_Module(); + module.AccessId = _ctx.StringValue("GenerateUploadFilePolicyForPartner.Module.AccessId"); + module.EncodedPolicy = _ctx.StringValue("GenerateUploadFilePolicyForPartner.Module.EncodedPolicy"); + module.Signature = _ctx.StringValue("GenerateUploadFilePolicyForPartner.Module.Signature"); + module.FileDir = _ctx.StringValue("GenerateUploadFilePolicyForPartner.Module.FileDir"); + module.Host = _ctx.StringValue("GenerateUploadFilePolicyForPartner.Module.Host"); + module.ExpireTime = _ctx.LongValue("GenerateUploadFilePolicyForPartner.Module.ExpireTime"); + module.OssUrl = _ctx.StringValue("GenerateUploadFilePolicyForPartner.Module.OssUrl"); + generateUploadFilePolicyForPartnerResponse.Module = module; + + return generateUploadFilePolicyForPartnerResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByFlowIdResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByFlowIdResponseUnmarshaller.cs new file mode 100644 index 000000000..acd645dca --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByFlowIdResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class GetNodeByFlowIdResponseUnmarshaller + { + public static GetNodeByFlowIdResponse Unmarshall(UnmarshallerContext _ctx) + { + GetNodeByFlowIdResponse getNodeByFlowIdResponse = new GetNodeByFlowIdResponse(); + + getNodeByFlowIdResponse.HttpResponse = _ctx.HttpResponse; + getNodeByFlowIdResponse.AllowRetry = _ctx.BooleanValue("GetNodeByFlowId.AllowRetry"); + getNodeByFlowIdResponse.RequestId = _ctx.StringValue("GetNodeByFlowId.RequestId"); + getNodeByFlowIdResponse.ErrorMsg = _ctx.StringValue("GetNodeByFlowId.ErrorMsg"); + getNodeByFlowIdResponse.HttpStatusCode = _ctx.IntegerValue("GetNodeByFlowId.HttpStatusCode"); + getNodeByFlowIdResponse.DynamicCode = _ctx.StringValue("GetNodeByFlowId.DynamicCode"); + getNodeByFlowIdResponse.ErrorCode = _ctx.StringValue("GetNodeByFlowId.ErrorCode"); + getNodeByFlowIdResponse.DynamicMessage = _ctx.StringValue("GetNodeByFlowId.DynamicMessage"); + getNodeByFlowIdResponse.Module = _ctx.StringValue("GetNodeByFlowId.Module"); + getNodeByFlowIdResponse.Success = _ctx.BooleanValue("GetNodeByFlowId.Success"); + getNodeByFlowIdResponse.AppName = _ctx.StringValue("GetNodeByFlowId.AppName"); + + return getNodeByFlowIdResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByTemplateIdResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByTemplateIdResponseUnmarshaller.cs new file mode 100644 index 000000000..39a0e4a56 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetNodeByTemplateIdResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class GetNodeByTemplateIdResponseUnmarshaller + { + public static GetNodeByTemplateIdResponse Unmarshall(UnmarshallerContext _ctx) + { + GetNodeByTemplateIdResponse getNodeByTemplateIdResponse = new GetNodeByTemplateIdResponse(); + + getNodeByTemplateIdResponse.HttpResponse = _ctx.HttpResponse; + getNodeByTemplateIdResponse.AllowRetry = _ctx.BooleanValue("GetNodeByTemplateId.AllowRetry"); + getNodeByTemplateIdResponse.RequestId = _ctx.StringValue("GetNodeByTemplateId.RequestId"); + getNodeByTemplateIdResponse.ErrorMsg = _ctx.StringValue("GetNodeByTemplateId.ErrorMsg"); + getNodeByTemplateIdResponse.HttpStatusCode = _ctx.IntegerValue("GetNodeByTemplateId.HttpStatusCode"); + getNodeByTemplateIdResponse.DynamicCode = _ctx.StringValue("GetNodeByTemplateId.DynamicCode"); + getNodeByTemplateIdResponse.ErrorCode = _ctx.StringValue("GetNodeByTemplateId.ErrorCode"); + getNodeByTemplateIdResponse.DynamicMessage = _ctx.StringValue("GetNodeByTemplateId.DynamicMessage"); + getNodeByTemplateIdResponse.Module = _ctx.StringValue("GetNodeByTemplateId.Module"); + getNodeByTemplateIdResponse.Success = _ctx.BooleanValue("GetNodeByTemplateId.Success"); + getNodeByTemplateIdResponse.AppName = _ctx.StringValue("GetNodeByTemplateId.AppName"); + + return getNodeByTemplateIdResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetProxyByTypeResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetProxyByTypeResponseUnmarshaller.cs new file mode 100644 index 000000000..d03fffcd0 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetProxyByTypeResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class GetProxyByTypeResponseUnmarshaller + { + public static GetProxyByTypeResponse Unmarshall(UnmarshallerContext _ctx) + { + GetProxyByTypeResponse getProxyByTypeResponse = new GetProxyByTypeResponse(); + + getProxyByTypeResponse.HttpResponse = _ctx.HttpResponse; + getProxyByTypeResponse.AllowRetry = _ctx.BooleanValue("GetProxyByType.AllowRetry"); + getProxyByTypeResponse.RequestId = _ctx.StringValue("GetProxyByType.RequestId"); + getProxyByTypeResponse.ErrorMsg = _ctx.StringValue("GetProxyByType.ErrorMsg"); + getProxyByTypeResponse.HttpStatusCode = _ctx.IntegerValue("GetProxyByType.HttpStatusCode"); + getProxyByTypeResponse.DynamicCode = _ctx.StringValue("GetProxyByType.DynamicCode"); + getProxyByTypeResponse.ErrorCode = _ctx.StringValue("GetProxyByType.ErrorCode"); + getProxyByTypeResponse.DynamicMessage = _ctx.StringValue("GetProxyByType.DynamicMessage"); + getProxyByTypeResponse.Module = _ctx.StringValue("GetProxyByType.Module"); + getProxyByTypeResponse.Success = _ctx.BooleanValue("GetProxyByType.Success"); + getProxyByTypeResponse.AppName = _ctx.StringValue("GetProxyByType.AppName"); + + return getProxyByTypeResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetRedisValueResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetRedisValueResponseUnmarshaller.cs new file mode 100644 index 000000000..ddbecc5f3 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetRedisValueResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class GetRedisValueResponseUnmarshaller + { + public static GetRedisValueResponse Unmarshall(UnmarshallerContext _ctx) + { + GetRedisValueResponse getRedisValueResponse = new GetRedisValueResponse(); + + getRedisValueResponse.HttpResponse = _ctx.HttpResponse; + getRedisValueResponse.AllowRetry = _ctx.BooleanValue("GetRedisValue.AllowRetry"); + getRedisValueResponse.RequestId = _ctx.StringValue("GetRedisValue.RequestId"); + getRedisValueResponse.ErrorMsg = _ctx.StringValue("GetRedisValue.ErrorMsg"); + getRedisValueResponse.HttpStatusCode = _ctx.IntegerValue("GetRedisValue.HttpStatusCode"); + getRedisValueResponse.DynamicCode = _ctx.StringValue("GetRedisValue.DynamicCode"); + getRedisValueResponse.ErrorCode = _ctx.StringValue("GetRedisValue.ErrorCode"); + getRedisValueResponse.DynamicMessage = _ctx.StringValue("GetRedisValue.DynamicMessage"); + getRedisValueResponse.Module = _ctx.StringValue("GetRedisValue.Module"); + getRedisValueResponse.Success = _ctx.BooleanValue("GetRedisValue.Success"); + getRedisValueResponse.AppName = _ctx.StringValue("GetRedisValue.AppName"); + + return getRedisValueResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetVariableResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetVariableResponseUnmarshaller.cs new file mode 100644 index 000000000..f5a8db4db --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/GetVariableResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class GetVariableResponseUnmarshaller + { + public static GetVariableResponse Unmarshall(UnmarshallerContext _ctx) + { + GetVariableResponse getVariableResponse = new GetVariableResponse(); + + getVariableResponse.HttpResponse = _ctx.HttpResponse; + getVariableResponse.AllowRetry = _ctx.BooleanValue("GetVariable.AllowRetry"); + getVariableResponse.RequestId = _ctx.StringValue("GetVariable.RequestId"); + getVariableResponse.ErrorMsg = _ctx.StringValue("GetVariable.ErrorMsg"); + getVariableResponse.HttpStatusCode = _ctx.IntegerValue("GetVariable.HttpStatusCode"); + getVariableResponse.DynamicCode = _ctx.StringValue("GetVariable.DynamicCode"); + getVariableResponse.ErrorCode = _ctx.StringValue("GetVariable.ErrorCode"); + getVariableResponse.DynamicMessage = _ctx.StringValue("GetVariable.DynamicMessage"); + getVariableResponse.Module = _ctx.StringValue("GetVariable.Module"); + getVariableResponse.Success = _ctx.BooleanValue("GetVariable.Success"); + getVariableResponse.AppName = _ctx.StringValue("GetVariable.AppName"); + + return getVariableResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/IdentifyCodeResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/IdentifyCodeResponseUnmarshaller.cs new file mode 100644 index 000000000..8d06f1319 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/IdentifyCodeResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class IdentifyCodeResponseUnmarshaller + { + public static IdentifyCodeResponse Unmarshall(UnmarshallerContext _ctx) + { + IdentifyCodeResponse identifyCodeResponse = new IdentifyCodeResponse(); + + identifyCodeResponse.HttpResponse = _ctx.HttpResponse; + identifyCodeResponse.AllowRetry = _ctx.BooleanValue("IdentifyCode.AllowRetry"); + identifyCodeResponse.RequestId = _ctx.StringValue("IdentifyCode.RequestId"); + identifyCodeResponse.ErrorMsg = _ctx.StringValue("IdentifyCode.ErrorMsg"); + identifyCodeResponse.HttpStatusCode = _ctx.IntegerValue("IdentifyCode.HttpStatusCode"); + identifyCodeResponse.DynamicCode = _ctx.StringValue("IdentifyCode.DynamicCode"); + identifyCodeResponse.ErrorCode = _ctx.StringValue("IdentifyCode.ErrorCode"); + identifyCodeResponse.DynamicMessage = _ctx.StringValue("IdentifyCode.DynamicMessage"); + identifyCodeResponse.Module = _ctx.StringValue("IdentifyCode.Module"); + identifyCodeResponse.Success = _ctx.BooleanValue("IdentifyCode.Success"); + identifyCodeResponse.AppName = _ctx.StringValue("IdentifyCode.AppName"); + + return identifyCodeResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullRpaModelResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullRpaModelResponseUnmarshaller.cs new file mode 100644 index 000000000..0e301bf77 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullRpaModelResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class PullRpaModelResponseUnmarshaller + { + public static PullRpaModelResponse Unmarshall(UnmarshallerContext _ctx) + { + PullRpaModelResponse pullRpaModelResponse = new PullRpaModelResponse(); + + pullRpaModelResponse.HttpResponse = _ctx.HttpResponse; + pullRpaModelResponse.AllowRetry = _ctx.BooleanValue("PullRpaModel.AllowRetry"); + pullRpaModelResponse.RequestId = _ctx.StringValue("PullRpaModel.RequestId"); + pullRpaModelResponse.ErrorMsg = _ctx.StringValue("PullRpaModel.ErrorMsg"); + pullRpaModelResponse.HttpStatusCode = _ctx.IntegerValue("PullRpaModel.HttpStatusCode"); + pullRpaModelResponse.DynamicCode = _ctx.StringValue("PullRpaModel.DynamicCode"); + pullRpaModelResponse.ErrorCode = _ctx.StringValue("PullRpaModel.ErrorCode"); + pullRpaModelResponse.DynamicMessage = _ctx.StringValue("PullRpaModel.DynamicMessage"); + pullRpaModelResponse.Module = _ctx.StringValue("PullRpaModel.Module"); + pullRpaModelResponse.Success = _ctx.BooleanValue("PullRpaModel.Success"); + pullRpaModelResponse.AppName = _ctx.StringValue("PullRpaModel.AppName"); + + return pullRpaModelResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullTaskResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullTaskResponseUnmarshaller.cs new file mode 100644 index 000000000..98711ac51 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PullTaskResponseUnmarshaller.cs @@ -0,0 +1,57 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class PullTaskResponseUnmarshaller + { + public static PullTaskResponse Unmarshall(UnmarshallerContext _ctx) + { + PullTaskResponse pullTaskResponse = new PullTaskResponse(); + + pullTaskResponse.HttpResponse = _ctx.HttpResponse; + pullTaskResponse.AllowRetry = _ctx.BooleanValue("PullTask.AllowRetry"); + pullTaskResponse.RequestId = _ctx.StringValue("PullTask.RequestId"); + pullTaskResponse.ErrorMsg = _ctx.StringValue("PullTask.ErrorMsg"); + pullTaskResponse.HttpStatusCode = _ctx.IntegerValue("PullTask.HttpStatusCode"); + pullTaskResponse.DynamicCode = _ctx.StringValue("PullTask.DynamicCode"); + pullTaskResponse.ErrorCode = _ctx.StringValue("PullTask.ErrorCode"); + pullTaskResponse.DynamicMessage = _ctx.StringValue("PullTask.DynamicMessage"); + pullTaskResponse.Success = _ctx.BooleanValue("PullTask.Success"); + pullTaskResponse.AppName = _ctx.StringValue("PullTask.AppName"); + + PullTaskResponse.PullTask_Module module = new PullTaskResponse.PullTask_Module(); + module.TaskId = _ctx.StringValue("PullTask.Module.TaskId"); + module.OutTaskId = _ctx.StringValue("PullTask.Module.OutTaskId"); + module.TaskType = _ctx.StringValue("PullTask.Module.TaskType"); + module.TaskData = _ctx.StringValue("PullTask.Module.TaskData"); + module.OrderId = _ctx.StringValue("PullTask.Module.OrderId"); + module.BizCode = _ctx.StringValue("PullTask.Module.BizCode"); + module.PrincipalKey = _ctx.StringValue("PullTask.Module.PrincipalKey"); + pullTaskResponse.Module = module; + + return pullTaskResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskDetailResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskDetailResponseUnmarshaller.cs new file mode 100644 index 000000000..53a76ee9a --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskDetailResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class PushRpaTaskDetailResponseUnmarshaller + { + public static PushRpaTaskDetailResponse Unmarshall(UnmarshallerContext _ctx) + { + PushRpaTaskDetailResponse pushRpaTaskDetailResponse = new PushRpaTaskDetailResponse(); + + pushRpaTaskDetailResponse.HttpResponse = _ctx.HttpResponse; + pushRpaTaskDetailResponse.AllowRetry = _ctx.BooleanValue("PushRpaTaskDetail.AllowRetry"); + pushRpaTaskDetailResponse.RequestId = _ctx.StringValue("PushRpaTaskDetail.RequestId"); + pushRpaTaskDetailResponse.ErrorMsg = _ctx.StringValue("PushRpaTaskDetail.ErrorMsg"); + pushRpaTaskDetailResponse.HttpStatusCode = _ctx.IntegerValue("PushRpaTaskDetail.HttpStatusCode"); + pushRpaTaskDetailResponse.DynamicCode = _ctx.StringValue("PushRpaTaskDetail.DynamicCode"); + pushRpaTaskDetailResponse.ErrorCode = _ctx.StringValue("PushRpaTaskDetail.ErrorCode"); + pushRpaTaskDetailResponse.DynamicMessage = _ctx.StringValue("PushRpaTaskDetail.DynamicMessage"); + pushRpaTaskDetailResponse.Module = _ctx.StringValue("PushRpaTaskDetail.Module"); + pushRpaTaskDetailResponse.Success = _ctx.BooleanValue("PushRpaTaskDetail.Success"); + pushRpaTaskDetailResponse.AppName = _ctx.StringValue("PushRpaTaskDetail.AppName"); + + return pushRpaTaskDetailResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskResponseUnmarshaller.cs new file mode 100644 index 000000000..032b1e1a0 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/PushRpaTaskResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class PushRpaTaskResponseUnmarshaller + { + public static PushRpaTaskResponse Unmarshall(UnmarshallerContext _ctx) + { + PushRpaTaskResponse pushRpaTaskResponse = new PushRpaTaskResponse(); + + pushRpaTaskResponse.HttpResponse = _ctx.HttpResponse; + pushRpaTaskResponse.AllowRetry = _ctx.BooleanValue("PushRpaTask.AllowRetry"); + pushRpaTaskResponse.RequestId = _ctx.StringValue("PushRpaTask.RequestId"); + pushRpaTaskResponse.ErrorMsg = _ctx.StringValue("PushRpaTask.ErrorMsg"); + pushRpaTaskResponse.HttpStatusCode = _ctx.IntegerValue("PushRpaTask.HttpStatusCode"); + pushRpaTaskResponse.DynamicCode = _ctx.StringValue("PushRpaTask.DynamicCode"); + pushRpaTaskResponse.ErrorCode = _ctx.StringValue("PushRpaTask.ErrorCode"); + pushRpaTaskResponse.DynamicMessage = _ctx.StringValue("PushRpaTask.DynamicMessage"); + pushRpaTaskResponse.Module = _ctx.StringValue("PushRpaTask.Module"); + pushRpaTaskResponse.Success = _ctx.BooleanValue("PushRpaTask.Success"); + pushRpaTaskResponse.AppName = _ctx.StringValue("PushRpaTask.AppName"); + + return pushRpaTaskResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/SetRedisValueResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/SetRedisValueResponseUnmarshaller.cs new file mode 100644 index 000000000..160ad9f56 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/SetRedisValueResponseUnmarshaller.cs @@ -0,0 +1,48 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class SetRedisValueResponseUnmarshaller + { + public static SetRedisValueResponse Unmarshall(UnmarshallerContext _ctx) + { + SetRedisValueResponse setRedisValueResponse = new SetRedisValueResponse(); + + setRedisValueResponse.HttpResponse = _ctx.HttpResponse; + setRedisValueResponse.AllowRetry = _ctx.BooleanValue("SetRedisValue.AllowRetry"); + setRedisValueResponse.RequestId = _ctx.StringValue("SetRedisValue.RequestId"); + setRedisValueResponse.ErrorMsg = _ctx.StringValue("SetRedisValue.ErrorMsg"); + setRedisValueResponse.HttpStatusCode = _ctx.IntegerValue("SetRedisValue.HttpStatusCode"); + setRedisValueResponse.DynamicCode = _ctx.StringValue("SetRedisValue.DynamicCode"); + setRedisValueResponse.ErrorCode = _ctx.StringValue("SetRedisValue.ErrorCode"); + setRedisValueResponse.DynamicMessage = _ctx.StringValue("SetRedisValue.DynamicMessage"); + setRedisValueResponse.Module = _ctx.BooleanValue("SetRedisValue.Module"); + setRedisValueResponse.Success = _ctx.BooleanValue("SetRedisValue.Success"); + setRedisValueResponse.AppName = _ctx.StringValue("SetRedisValue.AppName"); + + return setRedisValueResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/UpdateAgreementStatusResponseUnmarshaller.cs b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/UpdateAgreementStatusResponseUnmarshaller.cs new file mode 100644 index 000000000..2545d6864 --- /dev/null +++ b/aliyun-net-sdk-mseap/Mseap/Transform/V20210118/UpdateAgreementStatusResponseUnmarshaller.cs @@ -0,0 +1,39 @@ +/* + * 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.mseap.Model.V20210118; + +namespace Aliyun.Acs.mseap.Transform.V20210118 +{ + public class UpdateAgreementStatusResponseUnmarshaller + { + public static UpdateAgreementStatusResponse Unmarshall(UnmarshallerContext _ctx) + { + UpdateAgreementStatusResponse updateAgreementStatusResponse = new UpdateAgreementStatusResponse(); + + updateAgreementStatusResponse.HttpResponse = _ctx.HttpResponse; + updateAgreementStatusResponse.RequestId = _ctx.StringValue("UpdateAgreementStatus.RequestId"); + + return updateAgreementStatusResponse; + } + } +} diff --git a/aliyun-net-sdk-mseap/aliyun-net-sdk-mseap.vs2017.csproj b/aliyun-net-sdk-mseap/aliyun-net-sdk-mseap.vs2017.csproj new file mode 100644 index 000000000..edefd9077 --- /dev/null +++ b/aliyun-net-sdk-mseap/aliyun-net-sdk-mseap.vs2017.csproj @@ -0,0 +1,43 @@ + + + + netstandard2.0;net45 + Aliyun.Acs.mseap + 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 mseap + aliyun-net-sdk-mseap + + + + + + + all + runtime; build; native; contentfiles; analyzers + + + + + + + + + + + + + + + + + + + \ No newline at end of file