com.breuninger.boot.validation.domain.ValidationErrors.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of validation Show documentation
Show all versions of validation Show documentation
spring-boot-starter-breuninger
package com.breuninger.boot.validation.domain
data class ValidationErrors(
val path: String,
val status: Int,
val message: String?,
val errors: Map>
)