com.tairitsu.ignotus.foundation.annotation.JsonApiController.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of foundation Show documentation
Show all versions of foundation Show documentation
JSON:API like Controller utils.
package com.tairitsu.ignotus.foundation.annotation
@Target(AnnotationTarget.FUNCTION)
@Retention(AnnotationRetention.RUNTIME)
annotation class JsonApiController(
val optionalInclude: Array = [],
val optionalSort: Array = [],
)