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

io.mosip.authentication.common.service.integration.dto.OtpGenerateRequestDto Maven / Gradle / Ivy

package io.mosip.authentication.common.service.integration.dto;

public class OtpGenerateRequestDto {
	private String key;

	public OtpGenerateRequestDto(String userId) {
		this.key = userId;
	}

	public String getKey() {
		return key;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy