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)
39 @JsonProperty(
"success") Boolean success,
40 @JsonProperty(
"hostChanged") Boolean hostChanged,
41 @JsonProperty(
"hostChangesRemaining") Long hostChangesRemaining,
43 @JsonProperty(
"errorMsg") String errorMsg
45 this.success = success;
46 this.hostChanged = hostChanged;
47 this.hostChangesRemaining = hostChangesRemaining;
48 this.boostLicense = boostLicense;
49 this.errorMsg = errorMsg;
61 return hostChangesRemaining;
LicenseResponse(@JsonProperty("success") Boolean success,@JsonProperty("hostChanged") Boolean hostChanged,@JsonProperty("hostChangesRemaining") Long hostChangesRemaining,@JsonProperty("boostLicense") BoostLicenseResponse boostLicense,@JsonProperty("errorMsg") String errorMsg)
BoostLicenseResponse getBoostLicense()
final BoostLicenseResponse boostLicense
final Long hostChangesRemaining
final Boolean hostChanged
Long getHostChangesRemaining()