Show / Hide Table of Contents

Class GeneratedIds

A list of generated file IDs which can be provided in create requests.

Inheritance
System.Object
GeneratedIds
Implements
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.Drive.v3.Data
Assembly: Google.Apis.Drive.v3.dll
Syntax
public class GeneratedIds : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Ids

The IDs generated for the requesting user in the specified space.

Declaration
[JsonProperty("ids")]
public virtual IList<string> Ids { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Kind

Identifies what kind of resource this is. Value: the fixed string "drive#generatedIds".

Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type Description
System.String

Space

The type of file that can be created with these IDs.

Declaration
[JsonProperty("space")]
public virtual string Space { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top