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

tw.yukina.notion.sdk.model.block.TableOfContents 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.TextColor;

@Getter
@Setter
@ToString
@NoArgsConstructor
@AllArgsConstructor
@EqualsAndHashCode(callSuper = false)
public class TableOfContents {
    private static final String COLOR_FIELD = "color";

    @JsonProperty(COLOR_FIELD)
    private TextColor color;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy