com.alipay.api.domain.ZhimaCreditPayafteruseQuotaQueryModel Maven / Gradle / Ivy
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 信用额度查询
*
* @author auto create
* @since 1.0, 2024-11-02 00:35:16
*/
public class ZhimaCreditPayafteruseQuotaQueryModel extends AlipayObject {
private static final long serialVersionUID = 1522634127793957768L;
/**
* 分配给商家的外部类目
*/
@ApiField("category_id")
private String categoryId;
/**
* 芝麻开通协议号
*/
@ApiField("credit_agreement_id")
private String creditAgreementId;
/**
* 请求号,用于定位
*/
@ApiField("request_id")
private String requestId;
/**
* 芝麻信用服务ID
*/
@ApiField("zm_service_id")
private String zmServiceId;
public String getCategoryId() {
return this.categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}
public String getCreditAgreementId() {
return this.creditAgreementId;
}
public void setCreditAgreementId(String creditAgreementId) {
this.creditAgreementId = creditAgreementId;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getZmServiceId() {
return this.zmServiceId;
}
public void setZmServiceId(String zmServiceId) {
this.zmServiceId = zmServiceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy