com.spring.boxes.webhook.starter.push.feishu.Title Maven / Gradle / Ivy
The newest version!
package com.spring.boxes.webhook.starter.push.feishu;
import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
@Data
@NoArgsConstructor
@AllArgsConstructor
public class Title {
@JsonProperty("content")
private String content;
@JsonProperty("tag")
private String tag;
}