what-the-bank/sources/com/google/firebase/firestore/model/mutation/Overlay.java

19 lines
467 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.google.firebase.firestore.model.mutation;
import com.google.firebase.firestore.model.DocumentKey;
/* loaded from: classes2.dex */
public abstract class Overlay {
public abstract int getLargestBatchId();
public abstract Mutation getMutation();
public static Overlay create(int i, Mutation mutation) {
return new AutoValue_Overlay(i, mutation);
}
public DocumentKey getKey() {
return getMutation().getKey();
}
}