Show / Hide Table of Contents

Class GoogleCloudVisionV1p3beta1Property

A Property consists of a user-supplied name/value pair.

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

Properties

ETag

The ETag of the item.

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

Name

Name of the property.

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

Uint64Value

Value of numeric properties.

Declaration
[JsonProperty("uint64Value")]
public virtual ulong? Uint64Value { get; set; }
Property Value
Type Description
System.Nullable<System.UInt64>

Value

Value of the property.

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

Implements

IDirectResponseSchema
In This Article
Back to top