AI-generated Key Takeaways
-
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 ofConversionError
objects, each specifying an error code and message. -
Possible error codes include
INVALID_ARGUMENT
,INTERNAL
,PERMISSION_DENIED
, andNOT_FOUND
, indicating different types of issues with the conversion. -
The
kind
field identifies the resource type as eitherdfareporting#conversionStatus
for the overall status ordfareporting#conversionError
for individual errors.
The original conversion that was inserted or updated and whether there were any errors.
JSON representation |
---|
{ "conversion": { object ( |
Fields | |
---|---|
conversion |
The original conversion that was inserted or updated. |
errors[] |
A list of errors related to this conversion. |
kind |
Identifies what kind of resource this is. Value: the fixed string
. |
ConversionError
The error code and description for a conversion that failed to insert or update.
JSON representation |
---|
{
"code": enum ( |
Fields | |
---|---|
code |
The error code. |
message |
A description of the error. |
kind |
Identifies what kind of resource this is. Value: the fixed string
. |
Code
Enums | |
---|---|
INVALID_ARGUMENT |
|
INTERNAL |
|
PERMISSION_DENIED |
|
NOT_FOUND |