Show / Hide Table of Contents

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%" }
Inheritance
object
Function
Implements
IDirectResponseSchema
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
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>

Implements

IDirectResponseSchema
In this article
Back to top Generated by DocFX