All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.zw201913.response.GetResponse Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package com.github.zw201913.response;

import com.fasterxml.jackson.annotation.JsonAnySetter;
import lombok.Getter;
import lombok.ToString;
import org.apache.commons.collections4.MapUtils;

import java.util.LinkedHashMap;
import java.util.Map;

/**
 * @author zouwei
 * @className GetResponse
 * @date: 2022/8/23 下午6:19
 * @description:
 */
@Getter
@ToString(callSuper = true)
public class GetResponse extends BaseResponse {
	
	private Map fields;

	private DataObject object;

	@Getter
	@ToString
	public static class DataObject {
		private DataObject() {
		}

		private DataObject(String rawString) {
			this.type = "RawString";
			this.raw = rawString;
		}

		private String raw;

		private String type;

		private Object coordinates;

		private Map meta;

		@JsonAnySetter
		public void handleUnknown(String key, Object value) {
			if (MapUtils.isEmpty(this.meta)) {
				this.meta = new LinkedHashMap<>();
			}
			this.meta.put(key, String.valueOf(value));
		}
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy