![JAR search and dependency download from the Maven repository](/logo.png)
com.pdd.pop.sdk.http.api.pop.response.PddPromotionHomeCouponCreateResponse Maven / Gradle / Ivy
package com.pdd.pop.sdk.http.api.pop.response;
import com.pdd.pop.ext.fasterxml.jackson.annotation.JsonProperty;
import com.pdd.pop.sdk.http.PopBaseHttpResponse;
public class PddPromotionHomeCouponCreateResponse extends PopBaseHttpResponse {
/**
* 创建店铺首页优惠券批次对象
*/
@JsonProperty("home_coupon_batch_create_response")
private HomeCouponBatchCreateResponse homeCouponBatchCreateResponse;
public HomeCouponBatchCreateResponse getHomeCouponBatchCreateResponse() {
return homeCouponBatchCreateResponse;
}
public static class HomeCouponBatchCreateResponse {
/**
* 批次id
*/
@JsonProperty("batch_id")
private Long batchId;
public Long getBatchId() {
return batchId;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy