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

com.github.squirrelgrip.plugin.model.Summary.kt Maven / Gradle / Ivy

There is a newer version: 2.0.0
Show newest version
package com.github.squirrelgrip.plugin.model

import com.fasterxml.jackson.annotation.JsonProperty

data class Summary(
    @JsonProperty("usingLastVersion")
    val usingLastVersion: Int = 0,
    @JsonProperty("nextVersionAvailable")
    val nextVersionAvailable: Int = 0,
    @JsonProperty("nextIncremetalAvailable")
    val nextIncremetalAvailable: Int = 0,
    @JsonProperty("nextMinorAvailable")
    val nextMinorAvailable: Int = 0,
    @JsonProperty("nextMajorAvailable")
    val nextMajorAvailable: Int = 0,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy