Proposition Dto
data class PropositionDto(val id: String, val contextId: String, val text: String, val mentions: List<EntityMentionDto>, val confidence: Double, val decay: Double, val reasoning: String?, val grounding: List<String>, val provenance: List<ProvenanceEntryDto>, val created: Instant, val revised: Instant, val lastAccessed: Instant, val status: PropositionStatus, val action: String? = null)
Proposition DTO for API responses.
Constructors
Link copied to clipboard
constructor(id: String, contextId: String, text: String, mentions: List<EntityMentionDto>, confidence: Double, decay: Double, reasoning: String?, grounding: List<String>, provenance: List<ProvenanceEntryDto>, created: Instant, revised: Instant, lastAccessed: Instant, status: PropositionStatus, action: String? = null)