com.alipay.api.response.ZhimaCustomerBehaviorSyncResponse 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 java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: zhima.customer.behavior.sync response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:39:13
*/
public class ZhimaCustomerBehaviorSyncResponse extends AlipayResponse {
private static final long serialVersionUID = 5535851385566529958L;
/**
* 行为合约号
*/
@ApiField("contract_no")
private String contractNo;
/**
* 行为所触发的合约号
*/
@ApiListField("contract_nos")
@ApiField("string")
private List contractNos;
public void setContractNo(String contractNo) {
this.contractNo = contractNo;
}
public String getContractNo( ) {
return this.contractNo;
}
public void setContractNos(List contractNos) {
this.contractNos = contractNos;
}
public List getContractNos( ) {
return this.contractNos;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy