Show / Hide Table of Contents

Class DatasetList

Inheritance
System.Object
DatasetList
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.Bigquery.v2.Data
Assembly: Google.Apis.Bigquery.v2.dll
Syntax
public class DatasetList : IDirectResponseSchema

Properties

Datasets

An array of the dataset resources in the project. Each resource contains basic information. For full information about a particular dataset resource, use the Datasets: get method. This property is omitted when there are no datasets in the project.

Declaration
[JsonProperty("datasets")]
public virtual IList<DatasetList.DatasetsData> Datasets { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<DatasetList.DatasetsData>

ETag

A hash value of the results page. You can use this property to determine if the page has changed since the last request.

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

Kind

The list type. This property always returns the value "bigquery#datasetList".

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

NextPageToken

A token that can be used to request the next results page. This property is omitted on the final results page.

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

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top