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

io.mosip.registration.dto.PreRegistrationResponseDTO Maven / Gradle / Ivy

package io.mosip.registration.dto;

import java.sql.Timestamp;
import java.util.List;


/**
 * The DTO Class PreRegistration Response.
 *
 * @author YASWANTH S
 * @param   is a ReseponseDataSyncDTO class type
 */
public class PreRegistrationResponseDTO {

	/** The error details. */
	private List err;
	
	private String status;

	private Timestamp resTime;

	private List response;

	public List getErr() {
		return err;
	}

	public void setErr(List err) {
		this.err = err;
	}

	public String getStatus() {
		return status;
	}

	public void setStatus(String status) {
		this.status = status;
	}

	public Timestamp getResTime() {
		return resTime;
	}

	public void setResTime(Timestamp resTime) {
		this.resTime = resTime;
	}

	public List getResponse() {
		return response;
	}

	public void setResponse(List response) {
		this.response = response;
	}

	

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy