Class Cursor
A position in a query result set.
Implements
Inherited Members
Namespace: Google.Apis.Firestore.v1.Data
Assembly: Google.Apis.Firestore.v1.dll
Syntax
public class Cursor : IDirectResponseSchema
Properties
Before
If the position is just before or just after the given values, relative to the sort order defined by the query.
Declaration
[JsonProperty("before")]
public virtual bool? Before { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Values
The values that represent a position, in the order they appear in the order by clause of a query. Can contain fewer values than specified in the order by clause.
Declaration
[JsonProperty("values")]
public virtual IList<Value> Values { get; set; }
Property Value
Type | Description |
---|---|
IList<Value> |