commonMain.cccev.f2.requirement.domain.command.InformationRequirementCreateCommandDTO.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cccev-requirement-f2-domain Show documentation
Show all versions of cccev-requirement-f2-domain Show documentation
Kotlin implementation of Core Criterion and Core Evidence Vocabulary
package cccev.f2.requirement.domain.command
import cccev.s2.concept.domain.InformationConceptId
import cccev.s2.evidence.type.domain.EvidenceTypeListId
import cccev.s2.framework.domain.FrameworkId
import cccev.s2.requirement.domain.RequirementId
import cccev.s2.requirement.domain.command.RequirementCreatedEvent
import cccev.s2.requirement.domain.model.RequirementKind
import f2.dsl.fnc.F2Function
import kotlinx.serialization.Serializable
import kotlin.js.JsExport
import kotlin.js.JsName
typealias InformationRequirementCreateFunction = F2Function
@JsExport
@JsName("InformationRequirementCreateCommandDTO")
interface InformationRequirementCreateCommandDTO: RequirementCreateCommandDTO
@Serializable
data class InformationRequirementCreateCommandDTOBase(
override val identifier: String? = null,
override val name: String? = null,
override val description: String? = null,
override val type: String? = null,
override val isDerivedFrom: List = emptyList(),
override val hasRequirement: List = emptyList(),
override val hasConcept: List = emptyList(),
override val hasEvidenceTypeList: List = emptyList(),
override var hasQualifiedRelation: Map> = emptyMap(),
override val enablingCondition: String?,
override val enablingConditionDependencies: List,
override val required: Boolean,
override val validatingCondition: String?,
override val validatingConditionDependencies: List,
override val order: Int?,
override val properties: Map?
): InformationRequirementCreateCommandDTO{
override val kind: String = RequirementKind.INFORMATION.name
}
@JsExport
@JsName("InformationRequirementCreatedEventDTO")
interface InformationRequirementCreatedEventDTO: cccev.s2.requirement.domain.command.RequirementCreatedEventDTO
© 2015 - 2024 Weber Informatics LLC | Privacy Policy