Show / Hide Table of Contents

Class ListFoldersResponse

The ListFolders response message.

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

Properties

ETag

The ETag of the item.

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

Folders

A possibly paginated list of Folders that are direct descendants of the specified parent resource.

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

NextPageToken

A pagination token returned from a previous call to ListFolders that indicates from where listing should continue.

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

Implements

IDirectResponseSchema
In This Article
Back to top