de.lancom.openapi.entity.Entity.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-parser Show documentation
Show all versions of openapi-parser Show documentation
This open-source project provides an OpenAPI 3.0 Parser implemented in Kotlin, utilizing immutable data classes
package de.lancom.openapi.entity
interface Entity {
fun mergeEntity(other: Entity?): Entity
val entityDescriptor: EntityDescriptor
}