Initial Python rewrite
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
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<QuestionDTO> preguntas
|
||||
) {}
|
||||
Reference in New Issue
Block a user