8 lines
254 B
Java
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
|
|
) {} |