All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.river.connector.github.model.Content.kt Maven / Gradle / Ivy

There is a newer version: 1.0.0-alpha18
Show newest version
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