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

io.mosip.registration.dto.schema.UiScreenDTO Maven / Gradle / Ivy

package io.mosip.registration.dto.schema;

import java.util.HashMap;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;

import lombok.Data;

@Data
@JsonIgnoreProperties(ignoreUnknown = true)
public class UiScreenDTO {

	private int order;
	private String name;
	private HashMap label;
	private HashMap caption;
	//values of attributes mentioned here takes priority over the general attribute values
	private List fields;
	private String layoutTemplate;
	private boolean isActive;
	private boolean preRegFetchRequired;
	private boolean additionalInfoRequestIdRequired;
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy