PEC success emails not saved or included in response
This commit is contained in:
@@ -32,5 +32,5 @@ public class ApplicationAmendmentRequestResponse {
|
||||
private String internalNote;
|
||||
private ApplicationAmendmentRequestEnum status;
|
||||
private String emailTemplate;
|
||||
private EmailSendResponse emailSendResponse;
|
||||
private List<EmailSendResponse> emailSendResponse;
|
||||
}
|
||||
|
||||
@@ -48,5 +48,6 @@ public class ApplicationEvaluationFormResponse {
|
||||
private Long appointmentTemplateId;
|
||||
private String companyVatNumber;
|
||||
private String companyCodiceAteco;
|
||||
private List<EmailSendResponse> emailSendResponse;
|
||||
|
||||
}
|
||||
|
||||
@@ -49,6 +49,6 @@ public class ApplicationEvaluationResponse {
|
||||
private EvaluationVersionEnum evaluationVersion;
|
||||
private String companyVatNumber;
|
||||
private String companyCodiceAteco;
|
||||
private EmailSendResponse emailSendResponse;
|
||||
private List<EmailSendResponse> emailSendResponse;
|
||||
|
||||
}
|
||||
|
||||
@@ -5,12 +5,14 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class EmailReminderResponse {
|
||||
|
||||
@JsonProperty("emailSendResponse")
|
||||
private EmailSendResponse emailSendResponse;
|
||||
private List<EmailSendResponse> emailSendResponse;
|
||||
|
||||
}
|
||||
|
||||
@@ -5,9 +5,11 @@ import lombok.AllArgsConstructor;
|
||||
import lombok.Data;
|
||||
import lombok.NoArgsConstructor;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Data
|
||||
@AllArgsConstructor
|
||||
@NoArgsConstructor
|
||||
public class InitiatePasswordResetResponse {
|
||||
private EmailSendResponse emailSendResponse;
|
||||
private List<EmailSendResponse> emailSendResponse;
|
||||
}
|
||||
|
||||
@@ -6,6 +6,8 @@ import lombok.Data;
|
||||
import net.gepafin.tendermanagement.model.response.EmailSendResponse;
|
||||
import net.gepafin.tendermanagement.model.response.LoginResponse;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* JWTToken
|
||||
*/
|
||||
@@ -18,14 +20,14 @@ public class JWTToken {
|
||||
private LoginResponse loginResponse;
|
||||
|
||||
@JsonProperty("emailSendResponse")
|
||||
private EmailSendResponse emailSendResponse;
|
||||
private List<EmailSendResponse> emailSendResponse;
|
||||
|
||||
public JWTToken(String token, LoginResponse loginResponse) {
|
||||
this.token = token;
|
||||
this.loginResponse = loginResponse;
|
||||
}
|
||||
|
||||
public JWTToken(String token, LoginResponse loginResponse, EmailSendResponse emailSendResponse) {
|
||||
public JWTToken(String token, LoginResponse loginResponse, List<EmailSendResponse> emailSendResponse) {
|
||||
this.token = token;
|
||||
this.loginResponse = loginResponse;
|
||||
this.emailSendResponse = emailSendResponse;
|
||||
|
||||
Reference in New Issue
Block a user