Show / Hide Table of Contents

Class SearchFoldersResponse

The response message for searching folders.

Inheritance
System.Object
SearchFoldersResponse
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 SearchFoldersResponse : 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 folder search results. 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 SearchFolders that indicates from where searching 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