All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.blankcat.dto.message.Embed Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package cn.blankcat.dto.message;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

@Data
@AllArgsConstructor
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
// Embed 结构
public class Embed {

    private String title;
    private String description;
    // 消息弹窗内容,消息列表摘要
    private String prompt;
    private String timestamp;
    private EmbedField fields;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy