Skip to content

Commit

Permalink
Generated 2017-12-18 for Domain-intl.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 10, 2024
1 parent 2df247d commit eca4231
Show file tree
Hide file tree
Showing 5 changed files with 180 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-domain-intl/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-10 Version: 1.7.1
- Generated 2017-12-18 for `Domain-intl`.

2024-07-01 Version: 1.7.0
- Generated 2017-12-18 for `Domain-intl`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-domain-intl/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-domain-intl</artifactId>
<packaging>jar</packaging>
<version>1.7.0</version>
<version>1.7.1</version>
<name>aliyun-java-sdk-domain-intl</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
/*
* Licensed 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.
*/

package com.aliyuncs.domain_intl.model.v20171218;

import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.ProtocolType;
import com.aliyuncs.http.MethodType;

/**
* @author auto create
* @version
*/
public class SaveSingleTaskForReserveDropListDomainRequest extends RpcAcsRequest<SaveSingleTaskForReserveDropListDomainResponse> {


private String dns2;

private String dns1;

private String domainName;

private String contactTemplateId;
public SaveSingleTaskForReserveDropListDomainRequest() {
super("Domain-intl", "2017-12-18", "SaveSingleTaskForReserveDropListDomain");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.POST);
}

public String getDns2() {
return this.dns2;
}

public void setDns2(String dns2) {
this.dns2 = dns2;
if(dns2 != null){
putQueryParameter("Dns2", dns2);
}
}

public String getDns1() {
return this.dns1;
}

public void setDns1(String dns1) {
this.dns1 = dns1;
if(dns1 != null){
putQueryParameter("Dns1", dns1);
}
}

public String getDomainName() {
return this.domainName;
}

public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}

public String getContactTemplateId() {
return this.contactTemplateId;
}

public void setContactTemplateId(String contactTemplateId) {
this.contactTemplateId = contactTemplateId;
if(contactTemplateId != null){
putQueryParameter("ContactTemplateId", contactTemplateId);
}
}

@Override
public Class<SaveSingleTaskForReserveDropListDomainResponse> getResponseClass() {
return SaveSingleTaskForReserveDropListDomainResponse.class;
}

}
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
/*
* Licensed 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.
*/

package com.aliyuncs.domain_intl.model.v20171218;

import com.aliyuncs.AcsResponse;
import com.aliyuncs.domain_intl.transform.v20171218.SaveSingleTaskForReserveDropListDomainResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class SaveSingleTaskForReserveDropListDomainResponse extends AcsResponse {

private String requestId;

private String taskNo;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

public String getTaskNo() {
return this.taskNo;
}

public void setTaskNo(String taskNo) {
this.taskNo = taskNo;
}

@Override
public SaveSingleTaskForReserveDropListDomainResponse getInstance(UnmarshallerContext context) {
return SaveSingleTaskForReserveDropListDomainResponseUnmarshaller.unmarshall(this, context);
}

@Override
public boolean checkShowJsonItemName() {
return false;
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
/*
* Licensed 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.
*/

package com.aliyuncs.domain_intl.transform.v20171218;

import com.aliyuncs.domain_intl.model.v20171218.SaveSingleTaskForReserveDropListDomainResponse;
import com.aliyuncs.transform.UnmarshallerContext;


public class SaveSingleTaskForReserveDropListDomainResponseUnmarshaller {

public static SaveSingleTaskForReserveDropListDomainResponse unmarshall(SaveSingleTaskForReserveDropListDomainResponse saveSingleTaskForReserveDropListDomainResponse, UnmarshallerContext _ctx) {

saveSingleTaskForReserveDropListDomainResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForReserveDropListDomainResponse.RequestId"));
saveSingleTaskForReserveDropListDomainResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForReserveDropListDomainResponse.TaskNo"));

return saveSingleTaskForReserveDropListDomainResponse;
}
}

0 comments on commit eca4231

Please sign in to comment.