Files
int-layer/src/main/java/com/example/dto/dialogflow/DetectIntentResponseDTO.java
2025-07-16 13:43:46 -06:00

8 lines
254 B
Java

package com.example.dto.dialogflow;
import com.fasterxml.jackson.annotation.JsonProperty;
public record DetectIntentResponseDTO(
@JsonProperty("responseId") String responseId,
@JsonProperty("queryResult") QueryResultDTO queryResult
) {}