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

tw.yukina.notion.sdk.client.entity.EntityInterceptor Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonIgnore;
import lombok.Getter;
import lombok.Setter;


@Getter
public class EntityInterceptor implements Entity {

    @JsonIgnore
    private final String sessionUuid;

    @Setter
    @JsonIgnore
    private String entitySnapshot;

    public EntityInterceptor(String entitySnapshot, String sessionUuid) {
        this.entitySnapshot = entitySnapshot;
        this.sessionUuid = sessionUuid;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy