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

26 lines
757 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.SnapshotVersion;
import com.google.firebase.firestore.util.Preconditions;
import java.util.List;
import o.sbb;
/* loaded from: classes2.dex */
public final class MutationResult {
private final List<sbb> transformResults;
private final SnapshotVersion version;
public MutationResult(SnapshotVersion snapshotVersion, List<sbb> list) {
this.version = (SnapshotVersion) Preconditions.checkNotNull(snapshotVersion);
this.transformResults = list;
}
public final SnapshotVersion getVersion() {
return this.version;
}
public final List<sbb> getTransformResults() {
return this.transformResults;
}
}