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

io.mosip.pms.partner.request.dto.PartnerCertDownloadRequestDto Maven / Gradle / Ivy

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

import javax.validation.constraints.NotBlank;

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

/**
 * Partner Certificate Download Request DTO.
 * 
 * @author Nagarjuna 
 * @since 1.2.0
*/

@Data
@AllArgsConstructor
@NoArgsConstructor
@ApiModel(description = "Model representing request to download partner certificates.")
public class PartnerCertDownloadRequestDto {
    
    /**
	 * Certificate ID of Partner.
	 */
	@ApiModelProperty(notes = "Partner ID", required = true)
	@NotBlank
	String partnerId;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy