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

tw.yukina.notion.sdk.model.common.IconFileObject Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import lombok.*;

import java.time.ZonedDateTime;

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

    private static final String URL_FIELD = "url";
    private static final String EXPIRY_FIELD = "expiry_time";

    @JsonProperty(URL_FIELD)
    private String url;

    @JsonProperty(EXPIRY_FIELD)
    private ZonedDateTime expiryTime;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy