Show / Hide Table of Contents

Class AllocateIdsRequest

The request for Datastore.AllocateIds.

Inheritance
System.Object
AllocateIdsRequest
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Datastore.v1.Data
Assembly: Google.Apis.Datastore.v1.dll
Syntax
public class AllocateIdsRequest : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Keys

Required. A list of keys with incomplete key paths for which to allocate IDs. No key may be reserved/read-only.

Declaration
[JsonProperty("keys")]
public virtual IList<Key> Keys { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Key>

Implements

Google.Apis.Requests.IDirectResponseSchema
Back to top