com.spring.boxes.webhook.starter.push.feishu.UrlVal 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 UrlVal {
@JsonProperty("url")
private String url;
@JsonProperty("android_url")
private String androidUrl;
@JsonProperty("ios_url")
private String iosUrl;
@JsonProperty("pc_url")
private String pcUrl;
}