Show / Hide Table of Contents

Class KeyValuePairHint

User-provided hint for key value pair.

Inheritance
System.Object
KeyValuePairHint
Implements
IMessage<KeyValuePairHint>
System.IEquatable<KeyValuePairHint>
IDeepCloneable<KeyValuePairHint>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DocumentAI.V1Beta2
Assembly: Google.Cloud.DocumentAI.V1Beta2.dll
Syntax
public sealed class KeyValuePairHint : IMessage<KeyValuePairHint>, IEquatable<KeyValuePairHint>, IDeepCloneable<KeyValuePairHint>, IBufferMessage, IMessage

Constructors

KeyValuePairHint()

Declaration
public KeyValuePairHint()

KeyValuePairHint(KeyValuePairHint)

Declaration
public KeyValuePairHint(KeyValuePairHint other)
Parameters
Type Name Description
KeyValuePairHint other

Properties

Key

The key text for the hint.

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

ValueTypes

Type of the value. This is case-insensitive, and could be one of: ADDRESS, LOCATION, ORGANIZATION, PERSON, PHONE_NUMBER, ID, NUMBER, EMAIL, PRICE, TERMS, DATE, NAME. Types not in this list will be ignored.

Declaration
public RepeatedField<string> ValueTypes { get; }
Property Value
Type Description
RepeatedField<System.String>
Back to top