ConversionStatus

  • Provides details about a conversion, including the original conversion data and any errors encountered during insertion or update.

  • If errors occurred, the errors field contains a list of ConversionError objects, each specifying an error code and message.

  • Possible error codes include INVALID_ARGUMENT, INTERNAL, PERMISSION_DENIED, and NOT_FOUND, indicating different types of issues with the conversion.

  • The kind field identifies the resource type as either dfareporting#conversionStatus for the overall status or dfareporting#conversionError for individual errors.

The original conversion that was inserted or updated and whether there were any errors.

JSON representation
{
  "conversion": {
    object (Conversion)
  },
  "errors": [
    {
      object (ConversionError)
    }
  ],
  "kind": string
}
Fields
conversion

object (Conversion)

The original conversion that was inserted or updated.

errors[]

object (ConversionError)

A list of errors related to this conversion.

kind

string

Identifies what kind of resource this is. Value: the fixed string

"dfareporting#conversionStatus"

.

ConversionError

The error code and description for a conversion that failed to insert or update.

JSON representation
{
  "code": enum (Code),
  "message": string,
  "kind": string
}
Fields
code

enum (Code)

The error code.

message

string

A description of the error.

kind

string

Identifies what kind of resource this is. Value: the fixed string

"dfareporting#conversionError"

.

Code

Enums
INVALID_ARGUMENT
INTERNAL
PERMISSION_DENIED
NOT_FOUND