![JAR search and dependency download from the Maven repository](/logo.png)
com.kanishka.virustotal.dto.VirusScanInfo Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of VirustotalPublicV2.0 Show documentation
Show all versions of VirustotalPublicV2.0 Show documentation
Please refer to
https://github.com/kdkanishka/Virustotal-Public-API-V2.0-Client
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package com.kanishka.virustotal.dto;
import com.google.gson.annotations.SerializedName;
/**
* @author [email protected]
*/
public class VirusScanInfo {
@SerializedName("detected")
private boolean detected;
@SerializedName("version")
private String version;
@SerializedName("result")
private String result;
@SerializedName("update")
private String update;
public VirusScanInfo() {
}
public boolean isDetected() {
return detected;
}
public void setDetected(boolean detected) {
this.detected = detected;
}
public String getVersion() {
return version;
}
public void setVersion(String version) {
this.version = version;
}
public String getResult() {
return result;
}
public void setResult(String result) {
this.result = result;
}
public String getUpdate() {
return update;
}
public void setUpdate(String update) {
this.update = update;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy