Returns true if the snapshot contains the result of local writes (e.g. set() or update() calls)
that have not yet been committed to the backend. If your listener has opted into metadata updates
(via includeMetadataChanges:true) you will receive another snapshot with hasPendingWrites
equal to false once the writes have been committed to the backend.
Returns true if the snapshot was created from cached data rather than guaranteed up-to-date
server data. If your listener has opted into metadata updates (via includeMetadataChanges:true)
you will receive another snapshot with isFromCache equal to false once the client has
received up-to-date data from the backend.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-11 UTC."],[],[],null,["# FirebaseFirestore Framework Reference\n\nFIRSnapshotMetadata\n===================\n\n\n @interface FIRSnapshotMetadata : NSObject\n\nMetadata about a snapshot, describing the state of the snapshot.\n- `\n ``\n ``\n `\n\n ### [pendingWrites](#/c:objc(cs)FIRSnapshotMetadata(py)pendingWrites)\n\n `\n ` \n Returns `true` if the snapshot contains the result of local writes (e.g. set() or update() calls)\n that have not yet been committed to the backend. If your listener has opted into metadata updates\n (via `includeMetadataChanges:true`) you will receive another snapshot with `hasPendingWrites`\n equal to `false` once the writes have been committed to the backend. \n\n #### Declaration\n\n Objective-C \n\n @property (nonatomic, assign, unsafe_unretained, readonly,\n getter=hasPendingWrites) BOOL pendingWrites;\n\n- `\n ``\n ``\n `\n\n ### [fromCache](#/c:objc(cs)FIRSnapshotMetadata(py)fromCache)\n\n `\n ` \n Returns `true` if the snapshot was created from cached data rather than guaranteed up-to-date\n server data. If your listener has opted into metadata updates (via `includeMetadataChanges:true`)\n you will receive another snapshot with `isFromCache` equal to `false` once the client has\n received up-to-date data from the backend. \n\n #### Declaration\n\n Objective-C \n\n @property (nonatomic, readonly, getter=isFromCache) BOOL fromCache;"]]