org.archguard.aaac.api.messaging.Message.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of repl-api Show documentation
Show all versions of repl-api Show documentation
ArchGuard is a architecture governance tool which can analysis architecture in container, component, code level, create architecture fitness functions, and anaysis system dependencies..
The newest version!
package org.archguard.aaac.api.messaging
import kotlinx.serialization.Serializable
import org.archguard.dsl.base.model.ReactiveAction
@Serializable
data class Message(
var id: Int = -1,
var resultValue: String,
var className: String = "",
var msgType: MessageType = MessageType.NONE,
var content: MessageContent? = null,
var action: ReactiveAction? = null,
)