Property

Property

read-only

writeTime  Timestamp

The write time as set by the Firestore servers.

Example

let documentRef = firestore.doc('col/doc');

documentRef.set({foo: 'bar'}).then(writeResult => {
  console.log(`Document written at: ${writeResult.writeTime.toDate()}`);
});

Method

isEqual(other)

Returns true if this WriteResult is equal to the provided value.

Parameter

Name Type Optional Description

other

any type

 

The value to compare against.

Returns

true if this WriteResult is equal to the provided value.