Package-level declarations

Types

Link copied to clipboard
@Serializable
data class DecorationApi(val backgroundColor: Int? = null)
Link copied to clipboard
@Serializable
data class DocumentApi(val id: String = "", val title: String = "", val content: List<StoryStepApi> = emptyList(), val createdAt: Long = Clock.System.now().toEpochMilliseconds(), val lastUpdatedAt: Long = Clock.System.now().toEpochMilliseconds(), val userId: String)
Link copied to clipboard
@Serializable
data class StoryStepApi(val id: String, val type: StoryTypeApi, val parentId: String? = null, val url: String? = null, val path: String? = null, val text: String? = null, val checked: Boolean? = false, val steps: List<StoryStepApi> = emptyList(), val decoration: DecorationApi = DecorationApi(), val position: Int)
Link copied to clipboard
@Serializable
data class StoryTypeApi(val name: String, val number: Int)