19 package com.basistech.df.cybertriage.autopsy.ctapi.json;
21 import com.fasterxml.jackson.annotation.JsonCreator;
22 import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
23 import com.fasterxml.jackson.annotation.JsonProperty;
28 @JsonIgnoreProperties(ignoreUnknown =
true)
38 @JsonProperty(
"success") Boolean success,
39 @JsonProperty(
"hostChanged") Boolean hostChanged,
40 @JsonProperty(
"hostChangesRemaining") Long hostChangesRemaining,
43 this.success = success;
44 this.hostChanged = hostChanged;
45 this.hostChangesRemaining = hostChangesRemaining;
46 this.boostLicense = boostLicense;
58 return hostChangesRemaining;
BoostLicenseResponse getBoostLicense()
final BoostLicenseResponse boostLicense
final Long hostChangesRemaining
final Boolean hostChanged
LicenseResponse(@JsonProperty("success") Boolean success,@JsonProperty("hostChanged") Boolean hostChanged,@JsonProperty("hostChangesRemaining") Long hostChangesRemaining,@JsonProperty("boostLicense") BoostLicenseResponse boostLicense)
Long getHostChangesRemaining()