AI-generated Key Takeaways
-
The
NotNullError.Reason
enumeration outlines the reasons for a target error occurring within Google Ad Manager services. -
It primarily focuses on scenarios where expected arguments in a method call are null.
-
The enumeration includes specific reasons like
ARG1_NULL
,ARG2_NULL
,ARG3_NULL
, indicating which argument was null. -
It also includes general null (
NULL
) and unknown (UNKNOWN
) reasons for broader error cases. -
This enumeration helps in debugging and troubleshooting errors related to missing or invalid input values in Google Ad Manager API calls.
The reasons for the target error.
- Namespace
-
https://www.google.com/apis/ads/publisher/v202411
Enumeration | Description |
---|---|
ARG1_NULL
|
Assuming that a method will not have more than 3 arguments, if it does, return NULL |
ARG2_NULL
|
|
ARG3_NULL
|
|
NULL
|
|
UNKNOWN
|
The value returned if the actual value is not exposed by the requested API version. |