com.river.connector.github.model.Content.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector-github Show documentation
Show all versions of connector-github Show documentation
Extensions & Enterprise Integrations for Kotlin flows.
package com.river.connector.github.model
sealed interface Content {
val path: String
data class File(
val type: String,
val encoding: String,
val size: Int,
val name: String,
override val path: String,
val content: String,
val sha: String,
val url: String,
val gitUrl: String,
val htmlUrl: String,
val downloadUrl: String,
val links: Map
) : Content
data class Dir(
override val path: String,
val list: List
) : Content
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy