Show / Hide Table of Contents

Class ListReferenceImagesResponse

Response message for the ListReferenceImages method.

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

Properties

ETag

The ETag of the item.

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

NextPageToken

The next_page_token returned from a previous List request, if any.

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

PageSize

The maximum number of items to return. Default 10, maximum 100.

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

ReferenceImages

The list of reference images.

Declaration
[JsonProperty("referenceImages")]
public virtual IList<ReferenceImage> ReferenceImages { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<ReferenceImage>

Implements

IDirectResponseSchema
In This Article
Back to top