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

io.mosip.pms.device.request.dto.DeviceDetailSBIMappingDto Maven / Gradle / Ivy

The newest version!
package io.mosip.pms.device.request.dto;

import javax.validation.constraints.NotBlank;
import javax.validation.constraints.NotNull;

import lombok.Data;

@Data
public class DeviceDetailSBIMappingDto {

	@NotBlank(message="value is empty or null")
	@NotNull(message="value is empty or null")
	private String deviceDetailId;

	@NotBlank(message="value is empty or null")
	@NotNull(message="value is empty or null")
	private String sbiId;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy