UPDATE int-layer 25-Ago
This commit is contained in:
@@ -5,6 +5,8 @@
|
||||
|
||||
package com.example.dto.dialogflow.conversation;
|
||||
|
||||
|
||||
|
||||
import com.example.dto.dialogflow.notification.EventInputDTO;
|
||||
|
||||
public record QueryInputDTO(
|
||||
|
||||
@@ -7,4 +7,4 @@ package com.example.dto.dialogflow.notification;
|
||||
|
||||
public record EventInputDTO(
|
||||
String event
|
||||
) {}
|
||||
) {}
|
||||
@@ -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
|
||||
) {}
|
||||
@@ -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
|
||||
) {}
|
||||
) {}
|
||||
Reference in New Issue
Block a user