package com.example.dto.quickreplies; import com.fasterxml.jackson.annotation.JsonProperty; import java.util.List; public record QuickReplyDTO( @JsonProperty("header") String header, @JsonProperty("body") String body, @JsonProperty("button") String button, @JsonProperty("header_section") String headerSection, @JsonProperty("preguntas") List preguntas ) {}