com.searchunify.sdk.dtos.GetContentSourceObjectAndFieldsResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of su-sdk Show documentation
Show all versions of su-sdk Show documentation
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 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 GetContentSourceObjectAndFieldsResponse extends SearchUnifyResponse {
private List items;
@Getter
@ToString
public static class GetContentSourceObjectAndFieldsItems {
private GetContentSourceObjectAndFieldsObject object;
@Getter
@ToString
public static class GetContentSourceObjectAndFieldsObject {
private String id;
private String name;
private String label;
private List fields;
@Getter
@ToString
public static class GetContentSourceObjectAndFieldsObjectFields {
private String id;
private String name;
private String label;
private String type;
private String isFilterable;
private String isSearchable;
}
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy