
com.alipay.api.domain.PaymentInfoWithId Maven / Gradle / Ivy
package com.alipay.api.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* 支付信息
*
* @author auto create
* @since 1.0, 2023-06-30 15:04:16
*/
public class PaymentInfoWithId extends AlipayObject {
private static final long serialVersionUID = 1268729431712894779L;
/**
* 支付单id
*/
@ApiListField("payment_ids")
@ApiField("string")
private List paymentIds;
/**
* 支付资金类型
*/
@ApiField("type")
private String type;
public List getPaymentIds() {
return this.paymentIds;
}
public void setPaymentIds(List paymentIds) {
this.paymentIds = paymentIds;
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy