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

io.fusionauth.domain.api.ThemeSearchResponse Maven / Gradle / Ivy

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