com.kanishka.virustotal.dto.DomainResolution 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!
package com.kanishka.virustotal.dto;
import com.google.gson.annotations.SerializedName;
/**
* Created by kanishka on 1/23/14.
*/
public class DomainResolution {
@SerializedName("last_resolved")
private String lastResolved;
@SerializedName("ip_address")
private String ipAddress;
public String getLastResolved() {
return lastResolved;
}
public void setLastResolved(String lastResolved) {
this.lastResolved = lastResolved;
}
public String getIpAddress() {
return ipAddress;
}
public void setIpAddress(String ipAddress) {
this.ipAddress = ipAddress;
}
}