Show / Hide Table of Contents

Class CategoryCount

Represents the count of a single category within the cluster.

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

Properties

Category

The name of category.

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

Count

The count of training samples matching the category within the cluster.

Declaration
[JsonProperty("count")]
public virtual long? Count { get; set; }
Property Value
Type Description
System.Nullable<System.Int64>

ETag

The ETag of the item.

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

Implements

IDirectResponseSchema
In This Article
Back to top