io.fusionauth.domain.api.ThemeSearchResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fusionauth-java-client Show documentation
Show all versions of fusionauth-java-client Show documentation
The Java Client library provides a native Java binding to the FusionAuth REST API.
The newest version!
/*
* Copyright (c) 2023, FusionAuth, All Rights Reserved
*/
package io.fusionauth.domain.api;
import java.util.List;
import com.inversoft.json.JacksonConstructor;
import io.fusionauth.domain.Theme;
import io.fusionauth.domain.search.SearchResults;
/**
* Search response for Themes
*
* @author Mark Manes
*/
public class ThemeSearchResponse {
public List themes;
public long total;
@JacksonConstructor
public ThemeSearchResponse() {
}
public ThemeSearchResponse(SearchResults searchResults) {
themes = searchResults.results;
total = searchResults.total;
}
}
© 2015 - 2026 Weber Informatics LLC | Privacy Policy