AI-generated Key Takeaways
-
The VideoMobileAppCategoryOperation represents the creation of a new video mobile application category.
-
Calling any of its methods (getErrors, getResult, or isSuccessful) executes the operation.
-
For efficiency, store operations in an array and call methods only after constructing all operations.
-
getErrors() returns errors if the operation failed, or an empty array if successful.
-
getResult() returns the created VideoMobileAppCategory or null if unsuccessful.
-
isSuccessful() indicates if the operation was successful with a boolean value.
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 VideoMobileAppCategory. |
getResult() | AdsApp.VideoMobileAppCategory |
Returns the newly created VideoMobileAppCategory, 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 VideoMobileAppCategory. Return values:
Type | Description |
---|---|
String[] |
The errors that occurred during the VideoMobileAppCategoryOperation . |
getResult()
Returns the newly created VideoMobileAppCategory, or null
if
the operation was unsuccessful. Return values:
Type | Description |
---|---|
AdsApp.VideoMobileAppCategory |
The VideoMobileAppCategory created by the VideoMobileAppCategoryOperation. |
isSuccessful()
Returns true
if the operation was successful. Return values:
Type | Description |
---|---|
boolean |
true if the operation was successful. |