com.alipay.api.response.AlipayCommerceCityfacilitatorDepositQueryResponse 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.response;
import java.util.List;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
import com.alipay.api.domain.RechargeBill;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.commerce.cityfacilitator.deposit.query response.
*
* @author auto create
* @since 1.0, 2015-12-15 11:37:56
*/
public class AlipayCommerceCityfacilitatorDepositQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 3115521876552767827L;
/**
* 待圈存明细
*/
@ApiListField("recharge_bills")
@ApiField("recharge_bill")
private List rechargeBills;
public void setRechargeBills(List rechargeBills) {
this.rechargeBills = rechargeBills;
}
public List getRechargeBills( ) {
return this.rechargeBills;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy