Show / Hide Table of Contents

Class GoogleCloudVisionV1p3beta1ImageAnnotationContext

If an image was produced from a file (e.g. a PDF), this message gives information about the source of that image.

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

Properties

ETag

The ETag of the item.

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

PageNumber

If the file was a PDF or TIFF, this field gives the page number within the file used to produce the image.

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

Uri

The URI of the file used to produce the image.

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

Implements

IDirectResponseSchema
In This Article
Back to top