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

com.searchunify.sdk.dtos.GetSearchSummaryChartResponse Maven / Gradle / Ivy

Go to download

The SearchUnify SDK enables developers to easily work with the SearchUnify platform and build scalable solutions with search, analytics, crawlers and more.

The newest version!
/**
 * 
 */
package com.searchunify.sdk.dtos;

import java.util.List;

import com.fasterxml.jackson.annotation.JsonProperty;

import lombok.Getter;
import lombok.NoArgsConstructor;
import lombok.Setter;
import lombok.ToString;

/**
 * This class is @author ankur
 * This class is created at 22-Mar-2021
 */
@Getter
@Setter
@NoArgsConstructor
@ToString
public class GetSearchSummaryChartResponse extends SearchUnifyResponse {

	private GetSearchSummaryChart data;

	@Getter
	@ToString
	public static class GetSearchSummaryChart {

		@JsonProperty("All searches ")
		private List allSearches;

		@JsonProperty("All searches with results")
		private List allSearchesWithResult;

		@JsonProperty("Conversions")
		private List conversions;

		private String format;

		private long conversionPercentage;

		@Getter
		@ToString
		public static class GetAllSearches {

			private String count;

			private String key;

		}

		@Getter
		@ToString
		public static class GetAllSearchesWithResult {

			private String count;

			private String key;

		}

		@Getter
		@ToString
		public static class GetConversions {

			private String count;

			private String key;
		}

	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy