com.alipay.api.domain.AlipayOverseasTravelBenefitChangeNotifyModel 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.domain;
import java.util.List;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.internal.mapping.ApiListField;
/**
* GN权益通知回调
*
* @author auto create
* @since 1.0, 2020-05-28 18:55:14
*/
public class AlipayOverseasTravelBenefitChangeNotifyModel extends AlipayObject {
private static final long serialVersionUID = 8877339349316788228L;
/**
* 收单站在gn的id
*/
@ApiField("acquirer_id")
private String acquirerId;
/**
* 权益详情列表
*/
@ApiListField("benefit_detail_info_list")
@ApiField("benefit_detail_info")
private List benefitDetailInfoList;
/**
* 发卡站在gn的id
*/
@ApiField("psp_id")
private String pspId;
public String getAcquirerId() {
return this.acquirerId;
}
public void setAcquirerId(String acquirerId) {
this.acquirerId = acquirerId;
}
public List getBenefitDetailInfoList() {
return this.benefitDetailInfoList;
}
public void setBenefitDetailInfoList(List benefitDetailInfoList) {
this.benefitDetailInfoList = benefitDetailInfoList;
}
public String getPspId() {
return this.pspId;
}
public void setPspId(String pspId) {
this.pspId = pspId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy