Show / Hide Table of Contents

Class ProcessingError

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

Properties

Code

Error code indicating the nature of the error.

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

ErrorMessage

Description of the error.

Declaration
[JsonProperty("errorMessage")]
public virtual string ErrorMessage { 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

FieldViolations

In case the item fields are invalid, this field contains the details about the validation errors.

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

Implements

IDirectResponseSchema
Back to top