Show / Hide Table of Contents

Class GoogleCloudVisionV1p2beta1ProductKeyValue

A product label represented as a key-value pair.

Inheritance
System.Object
GoogleCloudVisionV1p2beta1ProductKeyValue
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.Vision.v1.Data
Assembly: Google.Apis.Vision.v1.dll
Syntax
public class GoogleCloudVisionV1p2beta1ProductKeyValue : IDirectResponseSchema

Properties

ETag

The ETag of the item.

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

Key

The key of the label attached to the product. Cannot be empty and cannot exceed 128 bytes.

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

Value

The value of the label attached to the product. Cannot be empty and cannot exceed 128 bytes.

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

Implements

IDirectResponseSchema
In This Article
Back to top