com.antgroup.antchain.openapi.riskplus.models.XNameValuePair Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-riskplus Show documentation
Show all versions of openapi-riskplus Show documentation
Ant Chain RISKPLUS SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.riskplus.models;
import com.aliyun.tea.*;
public class XNameValuePair extends TeaModel {
// 键名
@NameInMap("name")
@Validation(required = true)
public String name;
// 键值
@NameInMap("value")
@Validation(required = true)
public String value;
public static XNameValuePair build(java.util.Map map) throws Exception {
XNameValuePair self = new XNameValuePair();
return TeaModel.build(map, self);
}
public XNameValuePair setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public XNameValuePair setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}