I have an interface for declaring the API, this is one of the methods: ```kotlin @GetMapping fun getPhraseList( @Parameter(hidden = true) assembler: PagedResourcesAssembler<PhraseResponse>, @Parameter(hidden = true) @PageableDefault(sort = [Const.DEFAULT_SORT]) pageable: Pageable, @Parameter(hidden = true) @QuerydslPredicate(root = Phrase::class) predicate: Predicate? ): PagedModel<EntityModel<PhraseResponse>> ```