ImageSearchResponseItem

@Serializable
data class ImageSearchResponseItem(val description: String? = null, val isOfficial: Boolean? = null, val isAutomated: Boolean? = null, val name: String? = null, val starCount: Int? = null)

Parameters

description
isOfficial
isAutomated

Whether this repository has automated builds enabled.


>Deprecated: This field is deprecated and will always be \"false\".

name
starCount

Constructors

Link copied to clipboard
constructor(description: String? = null, isOfficial: Boolean? = null, isAutomated: Boolean? = null, name: String? = null, starCount: Int? = null)

Properties

Link copied to clipboard
@SerialName(value = "description")
val description: String?
Link copied to clipboard
@SerialName(value = "is_automated")
val isAutomated: Boolean?
Link copied to clipboard
@SerialName(value = "is_official")
val isOfficial: Boolean?
Link copied to clipboard
@SerialName(value = "name")
val name: String?
Link copied to clipboard
@SerialName(value = "star_count")
val starCount: Int?