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

io.mosip.kernel.masterdata.dto.LocationLevelDto Maven / Gradle / Ivy

There is a newer version: 1.2.1.0
Show newest version
package io.mosip.kernel.masterdata.dto;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lombok.Data;

@Data
//@ApiModel(value = "LocationList", description = "Location list for the country level")
public class LocationLevelDto {

	@ApiModelProperty(value = "code", required = true, dataType = "java.lang.String")
	private String code;

	@ApiModelProperty(value = "langCode", required = true, dataType = "java.lang.String")
	private String langCode;
	@ApiModelProperty(value = "name", required = true, dataType = "java.lang.String")
	private String name;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy