Show / Hide Table of Contents

Class ItemStatus

This contains item's status and any errors.

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

Properties

Code

Status code.

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

ETag

The ETag of the item.

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

ProcessingErrors

Error details in case the item is in ERROR state.

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

RepositoryErrors

Repository error reported by connector.

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

Implements

IDirectResponseSchema
Back to top