com.river.connector.github.model.Repository.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
data class Repository(
val id: Long,
val name: String,
val fullName: String,
val description: String?,
val htmlUrl: String,
val createdAt: String,
val updatedAt: String,
val pushedAt: String,
val forks: Int,
val watchers: Int,
val owner: Owner
) {
data class Owner(
val login: String,
val id: Long,
val avatarUrl: String
)
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy