Class PathElement
A (kind, ID/name) pair used to construct a key path.
If either name or ID is set, the element is complete. If neither is set, the element is incomplete.
Inheritance
System.Object
PathElement
Implements
Namespace: Google.Apis.Datastore.v1beta3.Data
Assembly: Google.Apis.Datastore.v1beta3.dll
Syntax
public class PathElement : object, IDirectResponseSchema
Properties
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Id
The auto-allocated ID of the entity. Never equal to zero. Values less than zero are discouraged and may not be supported in the future.
Declaration
public virtual Nullable<long> Id { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int64> |
Kind
The kind of the entity. A kind matching regex __.*__ is reserved/read-only. A kind must not
contain more than 1500 bytes when UTF-8 encoded. Cannot be "".
Declaration
public virtual string Kind { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Name
The name of the entity. A name matching regex __.*__ is reserved/read-only. A name must not be
more than 1500 bytes when UTF-8 encoded. Cannot be "".
Declaration
public virtual string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |