Package-level declarations

Types

Link copied to clipboard
@Serializable
data class JournalEntry(val id: String = "", val content: String = "", val photoUrls: List<String> = emptyList(), val createdAt: Long = 0, val updatedAt: Long = 0)

One journal entry — text body plus optional photos.

Link copied to clipboard
@Serializable
data class JournalMetaData(val name: String = "Journal", val description: String = "", val entries: List<JournalEntry> = emptyList(), val createdAt: Long = 0, val updatedAt: Long = 0, val error: String = "", val sources: List<NodeIdentity> = emptyList(), val snapshot: Snapshot = Snapshot(), val invocationTriggers: List<InvocationTrigger> = emptyList(), val nodeAction: NodeAction = NodeAction.EXECUTE, val inputs: List<NodeIdentity> = emptyList()) : SourceMetaData

Payload for a Project.Journal node.