Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ProcessingError

import type { ProcessingError } from "https://googleapis.deno.dev/v1/cloudsearch:v1.ts";
interface ProcessingError {
code?:
| "PROCESSING_ERROR_CODE_UNSPECIFIED"
| "MALFORMED_REQUEST"
| "UNSUPPORTED_CONTENT_FORMAT"
| "INDIRECT_BROKEN_ACL"
| "ACL_CYCLE";
errorMessage?: string;
fieldViolations?: FieldViolation[];
}

§Properties

§
code?: "PROCESSING_ERROR_CODE_UNSPECIFIED" | "MALFORMED_REQUEST" | "UNSUPPORTED_CONTENT_FORMAT" | "INDIRECT_BROKEN_ACL" | "ACL_CYCLE"
[src]

Error code indicating the nature of the error.

§
errorMessage?: string
[src]

The description of the error.

§
fieldViolations?: FieldViolation[]
[src]

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