RepoModel

@Immutable
data class RepoModel(id: String, url: String, language: String?, isPrivate: Boolean, name: String, fullName: String, ownerName: String, license: String?, visibility: RepoVisibility, desc: String?, stargazersCount: Int, forks: Int, openIssuesCount: Int, watchersCount: Int, size: Int, updatedAt: String, createdAt: String) : IModel

Repo model

Constructors

RepoModel
Link copied to clipboard
fun RepoModel(id: String, url: String, language: String?, isPrivate: Boolean, name: String, fullName: String, ownerName: String, license: String?, visibility: RepoVisibility, desc: String?, stargazersCount: Int, forks: Int, openIssuesCount: Int, watchersCount: Int, size: Int, updatedAt: String, createdAt: String)

Types

Companion
Link copied to clipboard
object Companion

Properties

createdAt
Link copied to clipboard
val createdAt: String
desc
Link copied to clipboard
val desc: String?
forks
Link copied to clipboard
val forks: Int
fullName
Link copied to clipboard
val fullName: String
id
Link copied to clipboard
open override val id: String
isPrivate
Link copied to clipboard
val isPrivate: Boolean
language
Link copied to clipboard
val language: String?
license
Link copied to clipboard
val license: String?
name
Link copied to clipboard
val name: String
openIssuesCount
Link copied to clipboard
val openIssuesCount: Int
ownerName
Link copied to clipboard
val ownerName: String
size
Link copied to clipboard
val size: Int
stargazersCount
Link copied to clipboard
val stargazersCount: Int
updatedAt
Link copied to clipboard
val updatedAt: String
url
Link copied to clipboard
val url: String
visibility
Link copied to clipboard
val visibility: RepoVisibility
watchersCount
Link copied to clipboard
val watchersCount: Int