com.alipay.api.response.AlipayOverseasTransferPaymentNotifyResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.overseas.transfer.payment.notify response.
*
* @author auto create
* @since 1.0, 2023-08-21 02:08:45
*/
public class AlipayOverseasTransferPaymentNotifyResponse extends AlipayResponse {
private static final long serialVersionUID = 1292836985721654576L;
/**
* 扩展字段
*/
@ApiField("pass_through_info")
private String passThroughInfo;
public void setPassThroughInfo(String passThroughInfo) {
this.passThroughInfo = passThroughInfo;
}
public String getPassThroughInfo( ) {
return this.passThroughInfo;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy