Class PropertyMask
The set of arbitrarily nested property paths used to restrict an operation to only a subset of properties in an entity.
Implements
Inherited Members
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class PropertyMask : IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
Paths
The paths to the properties covered by this mask. A path is a list of property names separated by dots
(.
), for example foo.bar
means the property bar
inside the entity property foo
inside the entity
associated with this path. If a property name contains a dot .
or a backslash \
, then that name must be
escaped. A path must not be empty, and may not reference a value inside an array value.
Declaration
[JsonProperty("paths")]
public virtual IList<string> Paths { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |