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

tw.yukina.notion.sdk.model.block.Bookmark Maven / Gradle / Ivy

There is a newer version: 1.0.1
Show newest version
package tw.yukina.notion.sdk.model.block;

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;
import tw.yukina.notion.sdk.model.common.rich.RichText;

import java.util.List;

@Getter
@Setter
@ToString
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(callSuper = false)
public class Bookmark {

    private static final String URL_FIELD = "url";
    private static final String CAPTION_FIELD = "caption";

    @JsonProperty(URL_FIELD)
    private String url;

    @JsonProperty(CAPTION_FIELD)
    private List richTexts;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy