All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.sendsafely.dto.response.ConfirmationResponse Maven / Gradle / Ivy

package com.sendsafely.dto.response;

import java.util.Date;

public class ConfirmationResponse {

	private String ipAddress;
	private Date timestamp;
	private FileResponse file;
	
	public String getIpAddress() {
		return ipAddress;
	}
	
	public void setIpAddress(String ipAddress) {
		this.ipAddress = ipAddress;
	}
	
	public Date getTimestamp() {
		return timestamp;
	}
	
	public void setTimestamp(Date timestamp) {
		this.timestamp = timestamp;
	}
	
	public FileResponse getFile() {
		return file;
	}
	
	public void setFile(FileResponse file) {
		this.file = file;
	}
	
	
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy