com.river.connector.github.model.Issue.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 Issue(
val id: Long,
val number: Int,
val title: String,
val body: String?,
val state: String,
val htmlUrl: String,
val createdAt: String,
val updatedAt: String,
val closedAt: String?,
val user: User,
val assignee: User?,
val assignees: List,
val labels: List
© 2015 - 2025 Weber Informatics LLC | Privacy Policy