47 lines
973 B
Java
47 lines
973 B
Java
package net.gepafin.tendermanagement.model.request;
|
|
|
|
import lombok.Data;
|
|
import net.gepafin.tendermanagement.enums.EmailScenarioTypeEnum;
|
|
import net.gepafin.tendermanagement.enums.EmailEntityTypeEnum;
|
|
import net.gepafin.tendermanagement.enums.EmailServiceTypeEnum;
|
|
import net.gepafin.tendermanagement.enums.RecipientTypeEnum;
|
|
|
|
import java.util.List;
|
|
|
|
@Data
|
|
public class EmailLogRequest {
|
|
|
|
private EmailScenarioTypeEnum emailType;
|
|
|
|
private RecipientTypeEnum recipientType;
|
|
|
|
private Long recipientId;
|
|
|
|
private String emailSubject;
|
|
|
|
private String emailBody;
|
|
|
|
private String sendStatus;
|
|
|
|
private String errorMessage;
|
|
|
|
private Long userId;
|
|
|
|
private String emailServiceResponse;
|
|
|
|
private EmailServiceTypeEnum emailServiceType;
|
|
|
|
private String recipientEmails;
|
|
|
|
private Long applicatioId;
|
|
|
|
private Long amendmentId;
|
|
|
|
private Long callId;
|
|
|
|
private Long userActionId;
|
|
|
|
private List<AttachmentRequest> attachments;
|
|
|
|
}
|