collectionId property

  1. @TagNumber(2)
String collectionId

Optional. The collection ID, relative to parent, to list.

For example: chatrooms or messages.

This is optional, and when not provided, Firestore will list documents from all collections under the provided parent.

Implementation

@$pb.TagNumber(2)
$core.String get collectionId => $_getSZ(1);
  1. @TagNumber(2)
void collectionId=(String v)

Implementation

@$pb.TagNumber(2)
set collectionId($core.String v) {
  $_setString(1, v);
}