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

io.quarkus.funqy.gcp.functions.event.FirestoreEvent Maven / Gradle / Ivy

There is a newer version: 3.17.5
Show newest version
package io.quarkus.funqy.gcp.functions.event;

import java.time.LocalDateTime;
import java.util.List;

/**
 * Background function event for Firestore
 *
 * @see Firestore event structure
 */
public class FirestoreEvent {
    public Document oldValue;
    public Document value;
    public UpdateMask updateMask;

    public static class Document {
        public LocalDateTime createTime;
        public String fields;
        public String name;
        public LocalDateTime updateTime;
    }

    public static class UpdateMask {
        public List fieldPaths;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy