io.quarkus.funqy.gcp.functions.event.FirestoreEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of quarkus-funqy-google-cloud-functions Show documentation
Show all versions of quarkus-funqy-google-cloud-functions Show documentation
Google Cloud Functions Binding for Quarkus Funqy framework
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