com.alipay.api.domain.CouponActivityContentVO 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 com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 优惠券商家群活动内容模型
*
* @author auto create
* @since 1.0, 2024-12-11 10:47:19
*/
public class CouponActivityContentVO extends AlipayObject {
private static final long serialVersionUID = 3217976553866538722L;
/**
* 优惠券Id。传入活动id后可支持在群内发优惠券消息。请先通过优惠券创建接口创建优惠券 并获取activity_id优惠券id作为这个入参的值。
*/
@ApiField("activity_id")
private String activityId;
public String getActivityId() {
return this.activityId;
}
public void setActivityId(String activityId) {
this.activityId = activityId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy