com.wechat.pay.java.service.retailstore.model.ApplyActivityRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wechatpay-java Show documentation
Show all versions of wechatpay-java Show documentation
A Java SDK for WeChat Pay APIv3
// Copyright 2021 Tencent Inc. All rights reserved.
//
// 营销加价购对外API
//
// 指定服务商可通过该接口报名加价购活动、查询某个区域内的加价购活动列表、锁定加价活动购资格以及解锁加价购活动资格。
//
// API version: 1.4.0
// Code generated by WechatPay APIv3 Generator based on [OpenAPI
// Generator](https://openapi-generator.tech); DO NOT EDIT.
package com.wechat.pay.java.service.retailstore.model;
import static com.wechat.pay.java.core.util.StringUtil.toIndentedString;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import java.util.List;
/** ApplyActivityRequest */
public class ApplyActivityRequest {
/** 活动ID 说明:活动ID */
@SerializedName("activity_id")
@Expose(serialize = false)
private String activityId;
/** 调用报名活动API的商户的商户号 说明:调用报名活动API的商户的商户号 */
@SerializedName("caller_merchant_id")
private String callerMerchantId;
/** 门店报名信息 说明:门店报名信息 */
@SerializedName("apply_infos")
private List applyInfos;
public String getActivityId() {
return activityId;
}
public void setActivityId(String activityId) {
this.activityId = activityId;
}
public String getCallerMerchantId() {
return callerMerchantId;
}
public void setCallerMerchantId(String callerMerchantId) {
this.callerMerchantId = callerMerchantId;
}
public List getApplyInfos() {
return applyInfos;
}
public void setApplyInfos(List applyInfos) {
this.applyInfos = applyInfos;
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ApplyActivityRequest {\n");
sb.append(" activityId: ").append(toIndentedString(activityId)).append("\n");
sb.append(" callerMerchantId: ").append(toIndentedString(callerMerchantId)).append("\n");
sb.append(" applyInfos: ").append(toIndentedString(applyInfos)).append("\n");
sb.append("}");
return sb.toString();
}
}