![JAR search and dependency download from the Maven repository](/logo.png)
com.kanishka.virustotal.dto.URL 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 URL {
@SerializedName("url")
private String url;
@SerializedName("positives")
private int positives;
@SerializedName("total")
private int total;
@SerializedName("scan_date")
private String scanDate;
public String getUrl() {
return url;
}
public void setUrl(String url) {
this.url = url;
}
public int getPositives() {
return positives;
}
public void setPositives(int positives) {
this.positives = positives;
}
public int getTotal() {
return total;
}
public void setTotal(int total) {
this.total = total;
}
public String getScanDate() {
return scanDate;
}
public void setScanDate(String scanDate) {
this.scanDate = scanDate;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy