AI-generated Key Takeaways
-
The operation represents the creation of a new excluded video YouTube channel.
-
Calling
getErrors,getResult, orisSuccessfulmethods executes the operation. -
For efficiency, it's recommended to store operations in an array and call these methods once all operations are constructed.
-
The
getErrors()method returns errors encountered during the operation. -
The
getResult()method returns the newly created excluded video YouTube channel or null. -
The
isSuccessful()method indicates if the operation was successful.
Methods:
| Member | Type | Description |
|---|---|---|
| getErrors() | String[] |
Returns an empty array if the operation was successful, otherwise returns the list of errors encountered when trying to create the ExcludedVideoYouTubeChannel. |
| getResult() | AdsApp.ExcludedVideoYouTubeChannel |
Returns the newly created ExcludedVideoYouTubeChannel, or null if
the operation was unsuccessful. |
| isSuccessful() | boolean |
Returns true if the operation was successful. |
getErrors()
Returns an empty array if the operation was successful, otherwise returns
the list of errors encountered when trying to create the ExcludedVideoYouTubeChannel. Return values:
| Type | Description |
|---|---|
String[] |
The errors that occurred during the ExcludedVideoYouTubeChannelOperation . |
getResult()
Returns the newly created ExcludedVideoYouTubeChannel, or null if
the operation was unsuccessful. Return values:
| Type | Description |
|---|---|
AdsApp.ExcludedVideoYouTubeChannel |
The ExcludedVideoYouTubeChannel created by the ExcludedVideoYouTubeChannelOperation. |
isSuccessful()
Returns true if the operation was successful. Return values:
| Type | Description |
|---|---|
boolean |
true if the operation was successful. |