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.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;
/**
* TicketInfo
*/
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
public class TicketInfo {
private static final long serialVersionUID = 1L;
public static final String SERIALIZED_NAME_ADDRESS = "address";
@SerializedName(SERIALIZED_NAME_ADDRESS)
private String address;
public static final String SERIALIZED_NAME_END_TIME = "end_time";
@SerializedName(SERIALIZED_NAME_END_TIME)
private String endTime;
public static final String SERIALIZED_NAME_RESV_TYPE = "resv_type";
@SerializedName(SERIALIZED_NAME_RESV_TYPE)
private String resvType;
public static final String SERIALIZED_NAME_SHOP = "shop";
@SerializedName(SERIALIZED_NAME_SHOP)
private String shop;
public static final String SERIALIZED_NAME_TICKET_NO = "ticket_no";
@SerializedName(SERIALIZED_NAME_TICKET_NO)
private String ticketNo;
public static final String SERIALIZED_NAME_TIME = "time";
@SerializedName(SERIALIZED_NAME_TIME)
private String time;
public static final String SERIALIZED_NAME_TYPE = "type";
@SerializedName(SERIALIZED_NAME_TYPE)
private String type;
public TicketInfo() {
}
public TicketInfo address(String address) {
this.address = address;
return this;
}
/**
* 地址 不同类型下的地址含义不同。若type为MEAL_NUM,address则代表取餐地点;若type为PICKUP_CODE,address则代表取件地点。其他类型查看小程序订单产品文档
* @return address
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "上海市南泉北路447号", value = "地址 不同类型下的地址含义不同。若type为MEAL_NUM,address则代表取餐地点;若type为PICKUP_CODE,address则代表取件地点。其他类型查看小程序订单产品文档")
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public TicketInfo endTime(String endTime) {
this.endTime = endTime;
return this;
}
/**
* 截止时间,如果凭证自提/核销时间是一个时间段可传入该字段,time代表自提开始时间,end_time代表自提结束时间,结束时间必须晚于开始时间
* @return endTime
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2020-01-21 11:30:00", value = "截止时间,如果凭证自提/核销时间是一个时间段可传入该字段,time代表自提开始时间,end_time代表自提结束时间,结束时间必须晚于开始时间")
public String getEndTime() {
return endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public TicketInfo resvType(String resvType) {
this.resvType = resvType;
return this;
}
/**
* 凭证预约类型,一般不需要传入。可选值为INSTANT/RESERVATION,其中INSTANT代表是实时凭证,RESERVATION代表是预约凭证,不传入默认为实时凭证。区别在于预约凭证一般不是当场可取,而是用户下单后的很多天之后才可以凭借凭证提取
* @return resvType
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "RESERVATION", value = "凭证预约类型,一般不需要传入。可选值为INSTANT/RESERVATION,其中INSTANT代表是实时凭证,RESERVATION代表是预约凭证,不传入默认为实时凭证。区别在于预约凭证一般不是当场可取,而是用户下单后的很多天之后才可以凭借凭证提取")
public String getResvType() {
return resvType;
}
public void setResvType(String resvType) {
this.resvType = resvType;
}
public TicketInfo shop(String shop) {
this.shop = shop;
return this;
}
/**
* 凭证可核销门店/货品自提门店,如果自提门店与购买门店不一致,可传入该字段提示用户自提门店
* @return shop
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "杭州面馆西溪路店", value = "凭证可核销门店/货品自提门店,如果自提门店与购买门店不一致,可传入该字段提示用户自提门店")
public String getShop() {
return shop;
}
public void setShop(String shop) {
this.shop = shop;
}
public TicketInfo ticketNo(String ticketNo) {
this.ticketNo = ticketNo;
return this;
}
/**
* 单据号 不同类型下单据号含义不同。若类型为MEAL_NUM,则ticket_no表示取餐号;若类型为PICKUP_CODE,则ticket_no表示取件码;其他类型查看小程序订单产品文档
* @return ticketNo
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "A0001", value = "单据号 不同类型下单据号含义不同。若类型为MEAL_NUM,则ticket_no表示取餐号;若类型为PICKUP_CODE,则ticket_no表示取件码;其他类型查看小程序订单产品文档")
public String getTicketNo() {
return ticketNo;
}
public void setTicketNo(String ticketNo) {
this.ticketNo = ticketNo;
}
public TicketInfo time(String time) {
this.time = time;
return this;
}
/**
* 时间,如果传入了end_time则该字段必传 不同类型下的地址含义不同。若type为MEAL_NUM,time则代表取餐时间;若type为PICKUP_CODE,address则代表取件时间。其他类型查看小程序订单产品文档
* @return time
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "2020-01-21 11:02:02", value = "时间,如果传入了end_time则该字段必传 不同类型下的地址含义不同。若type为MEAL_NUM,time则代表取餐时间;若type为PICKUP_CODE,address则代表取件时间。其他类型查看小程序订单产品文档")
public String getTime() {
return time;
}
public void setTime(String time) {
this.time = time;
}
public TicketInfo type(String type) {
this.type = type;
return this;
}
/**
* 凭证类型 MEAL_NUM 取餐号 PICKUP_CODE 取件码 SELF_PICK_CODE 自提码 PASSWORD 口令 具体类型查看产品文档
* @return type
**/
@javax.annotation.Nullable
@ApiModelProperty(example = "MEAL_NUM", value = "凭证类型 MEAL_NUM 取餐号 PICKUP_CODE 取件码 SELF_PICK_CODE 自提码 PASSWORD 口令 具体类型查看产品文档")
public String getType() {
return type;
}
public void setType(String type) {
this.type = type;
}
@Override
public boolean equals(Object o) {
if (this == o) {
return true;
}
if (o == null || getClass() != o.getClass()) {
return false;
}
TicketInfo ticketInfo = (TicketInfo) o;
return Objects.equals(this.address, ticketInfo.address) &&
Objects.equals(this.endTime, ticketInfo.endTime) &&
Objects.equals(this.resvType, ticketInfo.resvType) &&
Objects.equals(this.shop, ticketInfo.shop) &&
Objects.equals(this.ticketNo, ticketInfo.ticketNo) &&
Objects.equals(this.time, ticketInfo.time) &&
Objects.equals(this.type, ticketInfo.type);
}
@Override
public int hashCode() {
return Objects.hash(address, endTime, resvType, shop, ticketNo, time, type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class TicketInfo {\n");
sb.append(" address: ").append(toIndentedString(address)).append("\n");
sb.append(" endTime: ").append(toIndentedString(endTime)).append("\n");
sb.append(" resvType: ").append(toIndentedString(resvType)).append("\n");
sb.append(" shop: ").append(toIndentedString(shop)).append("\n");
sb.append(" ticketNo: ").append(toIndentedString(ticketNo)).append("\n");
sb.append(" time: ").append(toIndentedString(time)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).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("address");
openapiFields.add("end_time");
openapiFields.add("resv_type");
openapiFields.add("shop");
openapiFields.add("ticket_no");
openapiFields.add("time");
openapiFields.add("type");
// 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 TicketInfo
*/
public static void validateJsonObject(JsonObject jsonObj) throws IOException {
if (jsonObj == null) {
if (TicketInfo.openapiRequiredFields.isEmpty()) {
return;
} else { // has required fields
throw new IllegalArgumentException(String.format("The required field(s) %s in TicketInfo is not found in the empty JSON string", TicketInfo.openapiRequiredFields.toString()));
}
}
Set> entries = jsonObj.entrySet();
// check to see if the JSON string contains additional fields
for (Entry entry : entries) {
if (!TicketInfo.openapiFields.contains(entry.getKey())) {
throw new IllegalArgumentException(String.format("The field `%s` in the JSON string is not defined in the `TicketInfo` properties. JSON: %s", entry.getKey(), jsonObj.toString()));
}
}
if (jsonObj.get("address") != null && !jsonObj.get("address").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `address` to be a primitive type in the JSON string but got `%s`", jsonObj.get("address").toString()));
}
if (jsonObj.get("end_time") != null && !jsonObj.get("end_time").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `end_time` to be a primitive type in the JSON string but got `%s`", jsonObj.get("end_time").toString()));
}
if (jsonObj.get("resv_type") != null && !jsonObj.get("resv_type").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `resv_type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("resv_type").toString()));
}
if (jsonObj.get("shop") != null && !jsonObj.get("shop").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `shop` to be a primitive type in the JSON string but got `%s`", jsonObj.get("shop").toString()));
}
if (jsonObj.get("ticket_no") != null && !jsonObj.get("ticket_no").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `ticket_no` to be a primitive type in the JSON string but got `%s`", jsonObj.get("ticket_no").toString()));
}
if (jsonObj.get("time") != null && !jsonObj.get("time").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `time` to be a primitive type in the JSON string but got `%s`", jsonObj.get("time").toString()));
}
if (jsonObj.get("type") != null && !jsonObj.get("type").isJsonPrimitive()) {
throw new IllegalArgumentException(String.format("Expected the field `type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("type").toString()));
}
}
public static class CustomTypeAdapterFactory implements TypeAdapterFactory {
@SuppressWarnings("unchecked")
@Override
public TypeAdapter create(Gson gson, TypeToken type) {
if (!TicketInfo.class.isAssignableFrom(type.getRawType())) {
return null; // this class only serializes 'TicketInfo' and its subtypes
}
final TypeAdapter elementAdapter = gson.getAdapter(JsonElement.class);
final TypeAdapter thisAdapter
= gson.getDelegateAdapter(this, TypeToken.get(TicketInfo.class));
return (TypeAdapter) new TypeAdapter() {
@Override
public void write(JsonWriter out, TicketInfo value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
elementAdapter.write(out, obj);
}
@Override
public TicketInfo read(JsonReader in) throws IOException {
JsonObject jsonObj = elementAdapter.read(in).getAsJsonObject();
validateJsonObject(jsonObj);
return thisAdapter.fromJsonTree(jsonObj);
}
}.nullSafe();
}
}
/**
* Create an instance of TicketInfo given an JSON string
*
* @param jsonString JSON string
* @return An instance of TicketInfo
* @throws IOException if the JSON string is invalid with respect to TicketInfo
*/
public static TicketInfo fromJson(String jsonString) throws IOException {
return JSON.getGson().fromJson(jsonString, TicketInfo.class);
}
/**
* Convert an instance of TicketInfo to an JSON string
*
* @return JSON string
*/
public String toJson() {
return JSON.getGson().toJson(this);
}
}