com.alipay.api.domain.AlipayUserApplepayProvisioningbundleQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* wagu获取卡片信息接口
*
* @author auto create
* @since 1.0, 2020-05-29 10:24:47
*/
public class AlipayUserApplepayProvisioningbundleQueryModel extends AlipayObject {
private static final long serialVersionUID = 4227354858968324552L;
/**
* 加密证书链
*/
@ApiListField("encryption_cert_chain")
@ApiField("string")
private List encryptionCertChain;
/**
* 加密版本号
*/
@ApiField("encryption_version")
private String encryptionVersion;
/**
* 风控数据
*/
@ApiField("fraud_data")
private FraudData fraudData;
/**
* 地区
*/
@ApiField("locale")
private String locale;
/**
* 隐私数据加密证书链
*/
@ApiListField("private_encryption_cert_chain")
@ApiField("string")
private List privateEncryptionCertChain;
/**
* 卡id(由固定前缀+32位数字构成)
*/
@ApiField("provisioning_bundle_identifier")
private String provisioningBundleIdentifier;
/**
* 卡的用户id(由固定前缀+支付宝用户id组成)
*/
@ApiField("reference_identifier")
private String referenceIdentifier;
/**
* 卡的x-pod
*/
@ApiField("x_pod")
private String xPod;
public List getEncryptionCertChain() {
return this.encryptionCertChain;
}
public void setEncryptionCertChain(List encryptionCertChain) {
this.encryptionCertChain = encryptionCertChain;
}
public String getEncryptionVersion() {
return this.encryptionVersion;
}
public void setEncryptionVersion(String encryptionVersion) {
this.encryptionVersion = encryptionVersion;
}
public FraudData getFraudData() {
return this.fraudData;
}
public void setFraudData(FraudData fraudData) {
this.fraudData = fraudData;
}
public String getLocale() {
return this.locale;
}
public void setLocale(String locale) {
this.locale = locale;
}
public List getPrivateEncryptionCertChain() {
return this.privateEncryptionCertChain;
}
public void setPrivateEncryptionCertChain(List privateEncryptionCertChain) {
this.privateEncryptionCertChain = privateEncryptionCertChain;
}
public String getProvisioningBundleIdentifier() {
return this.provisioningBundleIdentifier;
}
public void setProvisioningBundleIdentifier(String provisioningBundleIdentifier) {
this.provisioningBundleIdentifier = provisioningBundleIdentifier;
}
public String getReferenceIdentifier() {
return this.referenceIdentifier;
}
public void setReferenceIdentifier(String referenceIdentifier) {
this.referenceIdentifier = referenceIdentifier;
}
public String getxPod() {
return this.xPod;
}
public void setxPod(String xPod) {
this.xPod = xPod;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy