Show / Hide Table of Contents

Class TableList

Inheritance
System.Object
TableList
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 TableList : IDirectResponseSchema

Properties

ETag

A hash of this page of results.

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

Kind

The type of list.

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

NextPageToken

A token to request the next page of results.

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

Tables

Tables in the requested dataset.

Declaration
[JsonProperty("tables")]
public virtual IList<TableList.TablesData> Tables { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<TableList.TablesData>

TotalItems

The total number of tables in the dataset.

Declaration
[JsonProperty("totalItems")]
public virtual int? TotalItems { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>

Implements

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