dev.crashteam.openapi.analytics.api.CategoriesApiController Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-analytics Show documentation
Show all versions of openapi-analytics Show documentation
Generates jar artifact containing compiled openapi classes based on generated openapi yaml files
The newest version!
package dev.crashteam.openapi.analytics.api;
import dev.crashteam.openapi.analytics.model.Categories;
import dev.crashteam.openapi.analytics.model.Category;
import dev.crashteam.openapi.analytics.model.CategoryProductsAnalytics;
import dev.crashteam.openapi.analytics.model.DailyCategoryAnalytics;
import org.springframework.format.annotation.DateTimeFormat;
import dev.crashteam.openapi.analytics.model.Error;
import dev.crashteam.openapi.analytics.model.GetCategories400Response;
import java.time.LocalDate;
import dev.crashteam.openapi.analytics.model.Marketplace;
import dev.crashteam.openapi.analytics.model.QueryPeriod;
import java.util.UUID;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.http.HttpStatus;
import org.springframework.http.MediaType;
import org.springframework.http.ResponseEntity;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.RequestBody;
import org.springframework.web.bind.annotation.RequestHeader;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.CookieValue;
import org.springframework.web.bind.annotation.RequestParam;
import org.springframework.web.bind.annotation.RequestPart;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.context.request.NativeWebRequest;
import javax.validation.constraints.*;
import javax.validation.Valid;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Generated;
@Generated(value = "org.openapitools.codegen.languages.SpringCodegen", date = "2024-04-04T20:14:40.494067127Z[Etc/UTC]", comments = "Generator version: 7.4.0")
@Controller
@RequestMapping("${openapi.crashTeamAnalytics.base-path:/v1}")
public class CategoriesApiController implements CategoriesApi {
}