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

io.mosip.credentialstore.dto.PartnerResponseWrapper Maven / Gradle / Ivy

package io.mosip.credentialstore.dto;

import java.time.LocalDateTime;
import java.time.ZoneId;

import javax.validation.Valid;
import javax.validation.constraints.NotNull;

import com.fasterxml.jackson.annotation.JsonFormat;

import io.mosip.kernel.core.exception.ErrorResponse;
import io.mosip.kernel.core.exception.ServiceError;
import lombok.Data;

@Data
public class PartnerResponseWrapper {
	
		private String id;
		private String version;
		@JsonFormat(shape = JsonFormat.Shape.STRING, pattern = "yyyy-MM-dd'T'HH:mm:ss.SSS'Z'")
		private LocalDateTime responsetime = LocalDateTime.now(ZoneId.of("UTC"));
		private Object metadata;
		@NotNull
		@Valid
		private T response;

		private ServiceError  errors;

	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy