Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance. Project price only 1 $
You can buy this project and download/modify it how often you want.
/*
* 支付宝开放平台API
* 支付宝开放平台v3协议文档
*
* The version of the OpenAPI document: 2022-12-23
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
package com.alipay.v3.model;
import java.util.Objects;
import java.util.Arrays;
import com.google.gson.TypeAdapter;
import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
import java.util.List;
import java.io.Serializable;
import com.google.gson.Gson;
import com.google.gson.GsonBuilder;
import com.google.gson.JsonArray;
import com.google.gson.JsonDeserializationContext;
import com.google.gson.JsonDeserializer;
import com.google.gson.JsonElement;
import com.google.gson.JsonObject;
import com.google.gson.JsonParseException;
import com.google.gson.TypeAdapterFactory;
import com.google.gson.reflect.TypeToken;
import java.lang.reflect.Type;
import java.util.HashMap;
import java.util.HashSet;
import java.util.Map;
import java.util.Map.Entry;
import java.util.Set;
import com.alipay.v3.JSON;
/**
* ConstraintInfo
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class ConstraintInfo {
private static final long serialVersionUID = 1L;
public static final String SERIALIZED_NAME_CASH_POOL_ID = "cash_pool_id";
@SerializedName(SERIALIZED_NAME_CASH_POOL_ID)
private String cashPoolId;
public static final String SERIALIZED_NAME_CROWD_GROUP_ID = "crowd_group_id";
@SerializedName(SERIALIZED_NAME_CROWD_GROUP_ID)
private String crowdGroupId;
public static final String SERIALIZED_NAME_CROWD_RESTRICTION = "crowd_restriction";
@SerializedName(SERIALIZED_NAME_CROWD_RESTRICTION)
private String crowdRestriction;
public static final String SERIALIZED_NAME_CROWD_RESTRICTION_VALUE = "crowd_restriction_value";
@SerializedName(SERIALIZED_NAME_CROWD_RESTRICTION_VALUE)
private String crowdRestrictionValue;
public static final String SERIALIZED_NAME_ITEM_IDS = "item_ids";
@SerializedName(SERIALIZED_NAME_ITEM_IDS)
private List itemIds = null;
public static final String SERIALIZED_NAME_MIN_COST = "min_cost";
@SerializedName(SERIALIZED_NAME_MIN_COST)
private String minCost;
public static final String SERIALIZED_NAME_SUBSIDY_PERCENT = "subsidy_percent";
@SerializedName(SERIALIZED_NAME_SUBSIDY_PERCENT)
private String subsidyPercent;
public static final String SERIALIZED_NAME_SUIT_SHOPS = "suit_shops";
@SerializedName(SERIALIZED_NAME_SUIT_SHOPS)
private List suitShops = null;
public static final String SERIALIZED_NAME_USER_WIN_COUNT = "user_win_count";
@SerializedName(SERIALIZED_NAME_USER_WIN_COUNT)
private String userWinCount;
public static final String SERIALIZED_NAME_USER_WIN_FREQUENCY = "user_win_frequency";
@SerializedName(SERIALIZED_NAME_USER_WIN_FREQUENCY)
private String userWinFrequency;
public ConstraintInfo() {
}
public ConstraintInfo cashPoolId(String cashPoolId) {
this.cashPoolId = cashPoolId;
return this;
}
/**
* 资金池ID (数据来源:需要ISV自己去口碑销售中台创建资金池,拿到对应的资金池ID,此参数仅适用ISV接入口福业务场景时使用,其他场景不需要传递此参数)
* @return cashPoolId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2017031100073001472700000GY7", value = "资金池ID (数据来源:需要ISV自己去口碑销售中台创建资金池,拿到对应的资金池ID,此参数仅适用ISV接入口福业务场景时使用,其他场景不需要传递此参数)")
public String getCashPoolId() {
return cashPoolId;
}
public void setCashPoolId(String cashPoolId) {
this.cashPoolId = cashPoolId;
}
public ConstraintInfo crowdGroupId(String crowdGroupId) {
this.crowdGroupId = crowdGroupId;
return this;
}
/**
* 人群规则组ID 仅直发奖类型活动设置有效,通过调用营销活动人群组规则创建接口参数返回
* @return crowdGroupId
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "12344556", value = "人群规则组ID 仅直发奖类型活动设置有效,通过调用营销活动人群组规则创建接口参数返回")
public String getCrowdGroupId() {
return crowdGroupId;
}
public void setCrowdGroupId(String crowdGroupId) {
this.crowdGroupId = crowdGroupId;
}
public ConstraintInfo crowdRestriction(String crowdRestriction) {
this.crowdRestriction = crowdRestriction;
return this;
}
/**
* 针对指定人群的约束条件
* @return crowdRestriction
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "NEW_MEMBER_PROM O:新会员 STUDENT:学生用户,仅对 DIRECT_SEND类型下的代金券,折扣券活动有效", value = "针对指定人群的约束条件")
public String getCrowdRestriction() {
return crowdRestriction;
}
public void setCrowdRestriction(String crowdRestriction) {
this.crowdRestriction = crowdRestriction;
}
public ConstraintInfo crowdRestrictionValue(String crowdRestrictionValue) {
this.crowdRestrictionValue = crowdRestrictionValue;
return this;
}
/**
* 根据crowd_restriction的值不同,设置相应的值,如果crowd_restriction是“MEMBER_CARD”,crowd_restriction_value就是关联会员卡模版ID集合,用逗号拼接
* @return crowdRestrictionValue
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2018012020075000000022612371,2018012020076000000022612371", value = "根据crowd_restriction的值不同,设置相应的值,如果crowd_restriction是“MEMBER_CARD”,crowd_restriction_value就是关联会员卡模版ID集合,用逗号拼接")
public String getCrowdRestrictionValue() {
return crowdRestrictionValue;
}
public void setCrowdRestrictionValue(String crowdRestrictionValue) {
this.crowdRestrictionValue = crowdRestrictionValue;
}
public ConstraintInfo itemIds(List itemIds) {
this.itemIds = itemIds;
return this;
}
public ConstraintInfo addItemIdsItem(String itemIdsItem) {
if (this.itemIds == null) {
this.itemIds = new ArrayList<>();
}
this.itemIds.add(itemIdsItem);
return this;
}
/**
* 单品码列表 仅在创建消费单品送活动时设置,最多设置500个单品码,由商户根据自己的商品管理自定义,一般为国标码
* @return itemIds
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "212313,221322", value = "单品码列表 仅在创建消费单品送活动时设置,最多设置500个单品码,由商户根据自己的商品管理自定义,一般为国标码")
public List getItemIds() {
return itemIds;
}
public void setItemIds(List itemIds) {
this.itemIds = itemIds;
}
public ConstraintInfo minCost(String minCost) {
this.minCost = minCost;
return this;
}
/**
* 最低消费金额,单位元 仅在创建消费送礼包活动时设置
* @return minCost
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "100", value = "最低消费金额,单位元 仅在创建消费送礼包活动时设置")
public String getMinCost() {
return minCost;
}
public void setMinCost(String minCost) {
this.minCost = minCost;
}
public ConstraintInfo subsidyPercent(String subsidyPercent) {
this.subsidyPercent = subsidyPercent;
return this;
}
/**
* 补贴百分比,95表示 95%,支持两位小数 (参数说明:补贴比例95%,表示ISV出资95%,商户出资5%,此参数仅适用ISV接入口福业务场景时使用,其他场景不需要传递此参数)
* @return subsidyPercent
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "95", value = "补贴百分比,95表示 95%,支持两位小数 (参数说明:补贴比例95%,表示ISV出资95%,商户出资5%,此参数仅适用ISV接入口福业务场景时使用,其他场景不需要传递此参数)")
public String getSubsidyPercent() {
return subsidyPercent;
}
public void setSubsidyPercent(String subsidyPercent) {
this.subsidyPercent = subsidyPercent;
}
public ConstraintInfo suitShops(List suitShops) {
this.suitShops = suitShops;
return this;
}
public ConstraintInfo addSuitShopsItem(String suitShopsItem) {
if (this.suitShops == null) {
this.suitShops = new ArrayList<>();
}
this.suitShops.add(suitShopsItem);
return this;
}
/**
* 活动适用的门店列表 仅品牌商发起的招商活动可为空 最多支持10w家门店
* @return suitShops
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2015110600077000000002125023,2015110600077000000002125022", value = "活动适用的门店列表 仅品牌商发起的招商活动可为空 最多支持10w家门店")
public List getSuitShops() {
return suitShops;
}
public void setSuitShops(List suitShops) {
this.suitShops = suitShops;
}
public ConstraintInfo userWinCount(String userWinCount) {
this.userWinCount = userWinCount;
return this;
}
/**
* 活动期间用户能够参与的次数限制 如果不设置则不限制参与次数
* @return userWinCount
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "1", value = "活动期间用户能够参与的次数限制 如果不设置则不限制参与次数")
public String getUserWinCount() {
return userWinCount;
}
public void setUserWinCount(String userWinCount) {
this.userWinCount = userWinCount;
}
public ConstraintInfo userWinFrequency(String userWinFrequency) {
this.userWinFrequency = userWinFrequency;
return this;
}
/**
* 活动期间用户能够参与的频率限制 如果不设置则不限制参与频率 每日中奖1次: D||1 每周中奖2次: W||2 每月中奖3次: M||3
* @return userWinFrequency
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "D||3", value = "活动期间用户能够参与的频率限制 如果不设置则不限制参与频率 每日中奖1次: D||1 每周中奖2次: W||2 每月中奖3次: M||3")
public String getUserWinFrequency() {
return userWinFrequency;
}
public void setUserWinFrequency(String userWinFrequency) {
this.userWinFrequency = userWinFrequency;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
ConstraintInfo constraintInfo = (ConstraintInfo) o;
return Objects.equals(this.cashPoolId, constraintInfo.cashPoolId) &&
Objects.equals(this.crowdGroupId, constraintInfo.crowdGroupId) &&
Objects.equals(this.crowdRestriction, constraintInfo.crowdRestriction) &&
Objects.equals(this.crowdRestrictionValue, constraintInfo.crowdRestrictionValue) &&
Objects.equals(this.itemIds, constraintInfo.itemIds) &&
Objects.equals(this.minCost, constraintInfo.minCost) &&
Objects.equals(this.subsidyPercent, constraintInfo.subsidyPercent) &&
Objects.equals(this.suitShops, constraintInfo.suitShops) &&
Objects.equals(this.userWinCount, constraintInfo.userWinCount) &&
Objects.equals(this.userWinFrequency, constraintInfo.userWinFrequency);
}
@Override
public int hashCode() {
return Objects.hash(cashPoolId, crowdGroupId, crowdRestriction, crowdRestrictionValue, itemIds, minCost, subsidyPercent, suitShops, userWinCount, userWinFrequency);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ConstraintInfo {\n");
sb.append(" cashPoolId: ").append(toIndentedString(cashPoolId)).append("\n");
sb.append(" crowdGroupId: ").append(toIndentedString(crowdGroupId)).append("\n");
sb.append(" crowdRestriction: ").append(toIndentedString(crowdRestriction)).append("\n");
sb.append(" crowdRestrictionValue: ").append(toIndentedString(crowdRestrictionValue)).append("\n");
sb.append(" itemIds: ").append(toIndentedString(itemIds)).append("\n");
sb.append(" minCost: ").append(toIndentedString(minCost)).append("\n");
sb.append(" subsidyPercent: ").append(toIndentedString(subsidyPercent)).append("\n");
sb.append(" suitShops: ").append(toIndentedString(suitShops)).append("\n");
sb.append(" userWinCount: ").append(toIndentedString(userWinCount)).append("\n");
sb.append(" userWinFrequency: ").append(toIndentedString(userWinFrequency)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
public static HashSet openapiFields;
public static HashSet openapiRequiredFields;
static {
// a set of all properties/fields (JSON key names)
openapiFields = new HashSet();
openapiFields.add("cash_pool_id");
openapiFields.add("crowd_group_id");
openapiFields.add("crowd_restriction");
openapiFields.add("crowd_restriction_value");
openapiFields.add("item_ids");
openapiFields.add("min_cost");
openapiFields.add("subsidy_percent");
openapiFields.add("suit_shops");
openapiFields.add("user_win_count");
openapiFields.add("user_win_frequency");
// a set of required properties/fields (JSON key names)
openapiRequiredFields = new HashSet();
}
/**
* Validates the JSON Object and throws an exception if issues found
*
* @param jsonObj JSON Object
* @throws IOException if the JSON Object is invalid with respect to ConstraintInfo
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
if (jsonObj == null) {
if (ConstraintInfo.openapiRequiredFields.isEmpty()) {
return;
} else { // has required fields
throw new IllegalArgumentException(String.format("The required field(s) %s in ConstraintInfo is not found in the empty JSON string", ConstraintInfo.openapiRequiredFields.toString()));
}
}
Set> entries = jsonObj.entrySet();
// check to see if the JSON string contains additional fields
for (Entry entry : entries) {
if (!ConstraintInfo.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `ConstraintInfo` properties. JSON: %s", entry.getKey(), jsonObj.toString()));
}
}
if (jsonObj.get("cash_pool_id") != null && !jsonObj.get("cash_pool_id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `cash_pool_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("cash_pool_id").toString()));
}
if (jsonObj.get("crowd_group_id") != null && !jsonObj.get("crowd_group_id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `crowd_group_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("crowd_group_id").toString()));
}
if (jsonObj.get("crowd_restriction") != null && !jsonObj.get("crowd_restriction").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `crowd_restriction` to be a primitive type in the JSON string but got `%s`", jsonObj.get("crowd_restriction").toString()));
}
if (jsonObj.get("crowd_restriction_value") != null && !jsonObj.get("crowd_restriction_value").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `crowd_restriction_value` to be a primitive type in the JSON string but got `%s`", jsonObj.get("crowd_restriction_value").toString()));
}
// ensure the json data is an array
if (jsonObj.get("item_ids") != null && !jsonObj.get("item_ids").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `item_ids` to be an array in the JSON string but got `%s`", jsonObj.get("item_ids").toString()));
}
if (jsonObj.get("min_cost") != null && !jsonObj.get("min_cost").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `min_cost` to be a primitive type in the JSON string but got `%s`", jsonObj.get("min_cost").toString()));
}
if (jsonObj.get("subsidy_percent") != null && !jsonObj.get("subsidy_percent").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `subsidy_percent` to be a primitive type in the JSON string but got `%s`", jsonObj.get("subsidy_percent").toString()));
}
// ensure the json data is an array
if (jsonObj.get("suit_shops") != null && !jsonObj.get("suit_shops").isJsonArray()) {
throw new IllegalArgumentException(String.format("Expected the field `suit_shops` to be an array in the JSON string but got `%s`", jsonObj.get("suit_shops").toString()));
}
if (jsonObj.get("user_win_count") != null && !jsonObj.get("user_win_count").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `user_win_count` to be a primitive type in the JSON string but got `%s`", jsonObj.get("user_win_count").toString()));
}
if (jsonObj.get("user_win_frequency") != null && !jsonObj.get("user_win_frequency").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `user_win_frequency` to be a primitive type in the JSON string but got `%s`", jsonObj.get("user_win_frequency").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!ConstraintInfo.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'ConstraintInfo' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(ConstraintInfo.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, ConstraintInfo value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public ConstraintInfo read(JsonReader in) throws IOException {
JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
validateJsonObject(jsonObj);
return thisAdapter.fromJsonTree(jsonObj);
}
}.nullSafe();
}
}
/**
* Create an instance of ConstraintInfo given an JSON string
*
* @param jsonString JSON string
* @return An instance of ConstraintInfo
* @throws IOException if the JSON string is invalid with respect to ConstraintInfo
*/
public static ConstraintInfo fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, ConstraintInfo.class);
}
/**
* Convert an instance of ConstraintInfo to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}