Skip to content

Commit

Permalink
Added param for ActivateLicenseResponse .
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 10, 2024
1 parent 15ab05f commit 1d806d8
Show file tree
Hide file tree
Showing 50 changed files with 7,409 additions and 0 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-10 Version: 1.0.0
- Added param for ActivateLicenseResponse .

2024-07-05 Version: 3.9.56
- Update to support new apis.

Expand Down
124 changes: 124 additions & 0 deletions aliyun-net-sdk-mseap/Mseap/Model/V20210118/ActivateLicenseRequest.cs
Original file line number Diff line number Diff line change
@@ -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<ActivateLicenseResponse>
{
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);
}
}
}
Original file line number Diff line number Diff line change
@@ -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;
}
}
}
}
Loading

0 comments on commit 1d806d8

Please sign in to comment.