com.alipay.api.domain.ZhimaCreditWatchlistiiGetModel 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
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 行业关注名单
*
* @author auto create
* @since 1.0, 2017-08-04 10:54:31
*/
public class ZhimaCreditWatchlistiiGetModel extends AlipayObject {
private static final long serialVersionUID = 4351475532323252676L;
/**
* 产品码,直接使用[示例]给出的值
*/
@ApiField("product_code")
private String productCode;
/**
* 商户请求的唯一标志,64位长度的字母数字下划线组合。该标识作为对账的关键信息,商户要保证其唯一性,对于用户使用相同transaction_id的查询,芝麻在一天(86400秒)内返回首次查询数据,超过有效期的查询即为无效并返回异常,有效期内的重复查询不重新计费
*/
@ApiField("transaction_id")
private String transactionId;
public String getProductCode() {
return this.productCode;
}
public void setProductCode(String productCode) {
this.productCode = productCode;
}
public String getTransactionId() {
return this.transactionId;
}
public void setTransactionId(String transactionId) {
this.transactionId = transactionId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy