com.alipay.api.response.KoubeiMarketingCampaignActivityQueryResponse 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 com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.domain.CampDetail;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: koubei.marketing.campaign.activity.query response.
*
* @author auto create
* @since 1.0, 2017-09-29 18:16:56
*/
public class KoubeiMarketingCampaignActivityQueryResponse extends AlipayResponse {
private static final long serialVersionUID = 4452555311181891584L;
/**
* 活动详情
*/
@ApiField("camp_detail")
private CampDetail campDetail;
public void setCampDetail(CampDetail campDetail) {
this.campDetail = campDetail;
}
public CampDetail getCampDetail( ) {
return this.campDetail;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy