com.alipay.api.response.AlipayOverseasTravelBenefitSyncResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.ResultInfoDTO;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.overseas.travel.benefit.sync response.
*
* @author auto create
* @since 1.0, 2024-03-01 16:28:33
*/
public class AlipayOverseasTravelBenefitSyncResponse extends AlipayResponse {
private static final long serialVersionUID = 8547382345544551515L;
/**
* 流量端生成的权益id
*/
@ApiField("client_benefit_id")
private String clientBenefitId;
/**
* 扩展信息,json格式
*/
@ApiField("ext_info")
private String extInfo;
/**
* 结果信息
*/
@ApiField("result")
private ResultInfoDTO result;
/**
* 同步结果状态
*/
@ApiField("sync_status")
private String syncStatus;
public void setClientBenefitId(String clientBenefitId) {
this.clientBenefitId = clientBenefitId;
}
public String getClientBenefitId( ) {
return this.clientBenefitId;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
}
public String getExtInfo( ) {
return this.extInfo;
}
public void setResult(ResultInfoDTO result) {
this.result = result;
}
public ResultInfoDTO getResult( ) {
return this.result;
}
public void setSyncStatus(String syncStatus) {
this.syncStatus = syncStatus;
}
public String getSyncStatus( ) {
return this.syncStatus;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy