com.alipay.api.response.ZhimaCreditPeZmgoAgreementUnsignResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.credit.pe.zmgo.agreement.unsign response.
*
* @author auto create
* @since 1.0, 2024-04-15 11:15:06
*/
public class ZhimaCreditPeZmgoAgreementUnsignResponse extends AlipayResponse {
private static final long serialVersionUID = 2276315711512247866L;
/**
* 支付宝系统中用以唯一标识用户签约记录的编号。
*/
@ApiField("agreement_id")
private String agreementId;
/**
* 调用芝麻GO结算受理接口时,需要传入该值
*/
@ApiField("withhold_plan_no")
private String withholdPlanNo;
public void setAgreementId(String agreementId) {
this.agreementId = agreementId;
}
public String getAgreementId( ) {
return this.agreementId;
}
public void setWithholdPlanNo(String withholdPlanNo) {
this.withholdPlanNo = withholdPlanNo;
}
public String getWithholdPlanNo( ) {
return this.withholdPlanNo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy