com.alipay.v3.model.MiniAppCategory Maven / Gradle / Ivy
/*
* 支付宝开放平台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.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;
/**
* MiniAppCategory
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class MiniAppCategory {
private static final long serialVersionUID = 1L;
public static final String SERIALIZED_NAME_CATEGORY_ID = "category_id";
@SerializedName(SERIALIZED_NAME_CATEGORY_ID)
private String categoryId;
public static final String SERIALIZED_NAME_CATEGORY_NAME = "category_name";
@SerializedName(SERIALIZED_NAME_CATEGORY_NAME)
private String categoryName;
public static final String SERIALIZED_NAME_HAS_CHILD = "has_child";
@SerializedName(SERIALIZED_NAME_HAS_CHILD)
private Boolean hasChild;
public static final String SERIALIZED_NAME_NEED_LICENSE = "need_license";
@SerializedName(SERIALIZED_NAME_NEED_LICENSE)
private Boolean needLicense;
public static final String SERIALIZED_NAME_NEED_OUT_DOOR_PIC = "need_out_door_pic";
@SerializedName(SERIALIZED_NAME_NEED_OUT_DOOR_PIC)
private Boolean needOutDoorPic;
public static final String SERIALIZED_NAME_NEED_SPECIAL_LICENSE = "need_special_license";
@SerializedName(SERIALIZED_NAME_NEED_SPECIAL_LICENSE)
private Boolean needSpecialLicense;
public static final String SERIALIZED_NAME_PARENT_CATEGORY_ID = "parent_category_id";
@SerializedName(SERIALIZED_NAME_PARENT_CATEGORY_ID)
private String parentCategoryId;
public MiniAppCategory() {
}
public MiniAppCategory categoryId(String categoryId) {
this.categoryId = categoryId;
return this;
}
/**
* 类目id
* @return categoryId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "类目id")
public String getCategoryId() {
return categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}
public MiniAppCategory categoryName(String categoryName) {
this.categoryName = categoryName;
return this;
}
/**
* 类目名称
* @return categoryName
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "类目名称")
public String getCategoryName() {
return categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public MiniAppCategory hasChild(Boolean hasChild) {
this.hasChild = hasChild;
return this;
}
/**
* 是否有子类目
* @return hasChild
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "是否有子类目")
public Boolean getHasChild() {
return hasChild;
}
public void setHasChild(Boolean hasChild) {
this.hasChild = hasChild;
}
public MiniAppCategory needLicense(Boolean needLicense) {
this.needLicense = needLicense;
return this;
}
/**
* 是否需要营业执照
* @return needLicense
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "是否需要营业执照")
public Boolean getNeedLicense() {
return needLicense;
}
public void setNeedLicense(Boolean needLicense) {
this.needLicense = needLicense;
}
public MiniAppCategory needOutDoorPic(Boolean needOutDoorPic) {
this.needOutDoorPic = needOutDoorPic;
return this;
}
/**
* 是否需要门头照
* @return needOutDoorPic
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "是否需要门头照")
public Boolean getNeedOutDoorPic() {
return needOutDoorPic;
}
public void setNeedOutDoorPic(Boolean needOutDoorPic) {
this.needOutDoorPic = needOutDoorPic;
}
public MiniAppCategory needSpecialLicense(Boolean needSpecialLicense) {
this.needSpecialLicense = needSpecialLicense;
return this;
}
/**
* 是否需要特许营业执照
* @return needSpecialLicense
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "是否需要特许营业执照")
public Boolean getNeedSpecialLicense() {
return needSpecialLicense;
}
public void setNeedSpecialLicense(Boolean needSpecialLicense) {
this.needSpecialLicense = needSpecialLicense;
}
public MiniAppCategory parentCategoryId(String parentCategoryId) {
this.parentCategoryId = parentCategoryId;
return this;
}
/**
* 父类目id
* @return parentCategoryId
**/
@javax.annotation.Nullable
@ApiModelProperty(value = "父类目id")
public String getParentCategoryId() {
return parentCategoryId;
}
public void setParentCategoryId(String parentCategoryId) {
this.parentCategoryId = parentCategoryId;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
MiniAppCategory miniAppCategory = (MiniAppCategory) o;
return Objects.equals(this.categoryId, miniAppCategory.categoryId) &&
Objects.equals(this.categoryName, miniAppCategory.categoryName) &&
Objects.equals(this.hasChild, miniAppCategory.hasChild) &&
Objects.equals(this.needLicense, miniAppCategory.needLicense) &&
Objects.equals(this.needOutDoorPic, miniAppCategory.needOutDoorPic) &&
Objects.equals(this.needSpecialLicense, miniAppCategory.needSpecialLicense) &&
Objects.equals(this.parentCategoryId, miniAppCategory.parentCategoryId);
}
@Override
public int hashCode() {
return Objects.hash(categoryId, categoryName, hasChild, needLicense, needOutDoorPic, needSpecialLicense, parentCategoryId);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class MiniAppCategory {\n");
sb.append(" categoryId: ").append(toIndentedString(categoryId)).append("\n");
sb.append(" categoryName: ").append(toIndentedString(categoryName)).append("\n");
sb.append(" hasChild: ").append(toIndentedString(hasChild)).append("\n");
sb.append(" needLicense: ").append(toIndentedString(needLicense)).append("\n");
sb.append(" needOutDoorPic: ").append(toIndentedString(needOutDoorPic)).append("\n");
sb.append(" needSpecialLicense: ").append(toIndentedString(needSpecialLicense)).append("\n");
sb.append(" parentCategoryId: ").append(toIndentedString(parentCategoryId)).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("category_id");
openapiFields.add("category_name");
openapiFields.add("has_child");
openapiFields.add("need_license");
openapiFields.add("need_out_door_pic");
openapiFields.add("need_special_license");
openapiFields.add("parent_category_id");
// 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 MiniAppCategory
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
if (jsonObj == null) {
if (MiniAppCategory.openapiRequiredFields.isEmpty()) {
return;
} else { // has required fields
throw new IllegalArgumentException(String.format("The required field(s) %s in MiniAppCategory is not found in the empty JSON string", MiniAppCategory.openapiRequiredFields.toString()));
}
}
Set> entries = jsonObj.entrySet();
// check to see if the JSON string contains additional fields
for (Entry entry : entries) {
if (!MiniAppCategory.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `MiniAppCategory` properties. JSON: %s", entry.getKey(), jsonObj.toString()));
}
}
if (jsonObj.get("category_id") != null && !jsonObj.get("category_id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `category_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("category_id").toString()));
}
if (jsonObj.get("category_name") != null && !jsonObj.get("category_name").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `category_name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("category_name").toString()));
}
if (jsonObj.get("parent_category_id") != null && !jsonObj.get("parent_category_id").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `parent_category_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("parent_category_id").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!MiniAppCategory.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'MiniAppCategory' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(MiniAppCategory.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, MiniAppCategory value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public MiniAppCategory read(JsonReader in) throws IOException {
JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
validateJsonObject(jsonObj);
return thisAdapter.fromJsonTree(jsonObj);
}
}.nullSafe();
}
}
/**
* Create an instance of MiniAppCategory given an JSON string
*
* @param jsonString JSON string
* @return An instance of MiniAppCategory
* @throws IOException if the JSON string is invalid with respect to MiniAppCategory
*/
public static MiniAppCategory fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, MiniAppCategory.class);
}
/**
* Convert an instance of MiniAppCategory to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}