
com.alipay.api.domain.SsdataDataserviceRiskIpprofileQueryModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
baidu push client api with maven
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* “蚁盾”智能IP检测服务
*
* @author auto create
* @since 1.0, 2017-08-18 14:50:48
*/
public class SsdataDataserviceRiskIpprofileQueryModel extends AlipayObject {
private static final long serialVersionUID = 4142955766744243397L;
/**
* IP地址
*/
@ApiField("ip_address")
private String ipAddress;
/**
* 手机号码
*/
@ApiField("phone")
private String phone;
public String getIpAddress() {
return this.ipAddress;
}
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
public String getPhone() {
return this.phone;
}
public void setPhone(String phone) {
this.phone = phone;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy