UPDATE int-layer 25-Ago

This commit is contained in:
PAVEL PALMA
2025-08-26 00:43:44 -06:00
parent 404f152097
commit 2a72bf9550
27 changed files with 785 additions and 336 deletions

View File

@@ -5,6 +5,8 @@
package com.example.dto.dialogflow.conversation;
import com.example.dto.dialogflow.notification.EventInputDTO;
public record QueryInputDTO(

View File

@@ -7,4 +7,4 @@ package com.example.dto.dialogflow.notification;
public record EventInputDTO(
String event
) {}
) {}

View File

@@ -1,8 +1,7 @@
package com.example.dto.quickreplies;
import com.fasterxml.jackson.annotation.JsonProperty;
public record QuestionDTO(
@JsonProperty("titulo") String titulo,
@JsonProperty("descripcion") String descripcion
) {}
@JsonProperty("descripcion") String descripcion,
@JsonProperty("respuesta") String respuesta
) {}

View File

@@ -1,9 +1,7 @@
package com.example.dto.quickreplies;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.List;
public record QuickReplyDTO(
@JsonProperty("header") String header,
@JsonProperty("preguntas") List<QuestionDTO> preguntas
) {}
) {}