AI-generated Key Takeaways
-
Calling any of the operation methods (getErrors, getResult, or isSuccessful) will execute the creation of the video mobile application.
-
It is recommended to store operations in an array for efficiency and call methods after all operations are constructed.
-
The getErrors method returns an array of errors if the operation failed, or an empty array if successful.
-
The getResult method returns the newly created VideoMobileApplication if successful, or null if it failed.
-
The isSuccessful method returns a boolean indicating whether the operation succeeded.
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 VideoMobileApplication. |
getResult() | AdsApp.VideoMobileApplication |
Returns the newly created VideoMobileApplication, 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 VideoMobileApplication. Return values:
Type | Description |
---|---|
String[] |
The errors that occurred during the VideoMobileApplicationOperation . |
getResult()
Returns the newly created VideoMobileApplication, or null
if
the operation was unsuccessful. Return values:
Type | Description |
---|---|
AdsApp.VideoMobileApplication |
The VideoMobileApplication created by the VideoMobileApplicationOperation. |
isSuccessful()
Returns true
if the operation was successful. Return values:
Type | Description |
---|---|
boolean |
true if the operation was successful. |