Class Function
Represents an unevaluated scalar expression. For example, the expression like(user_name, "%alice%") is
represented as:
name: "like" args { field_reference: "user_name" } args { string_value: "%alice%" }
Implements
Inherited Members
Namespace: Google.Apis.Firestore.v1.Data
Assembly: Google.Apis.Firestore.v1.dll
Syntax
public class Function : IDirectResponseSchema
Properties
Args
Optional. Ordered list of arguments the given function expects.
Declaration
[JsonProperty("args")]
public virtual IList<Value> Args { get; set; }
Property Value
| Type | Description |
|---|---|
| IList<Value> |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Name
Required. The name of the function to evaluate. Requires: * must be in snake case (lower case with underscore separator).
Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Options
Optional. Optional named arguments that certain functions may support.
Declaration
[JsonProperty("options")]
public virtual IDictionary<string, Value> Options { get; set; }
Property Value
| Type | Description |
|---|---|
| IDictionary<string, Value> |