AI-generated Key Takeaways
-
Calling any of the methods on a ProductTypeOperation executes the creation of a new product type.
-
Storing operations in an array and calling methods only after all operations are constructed is recommended for efficiency.
-
The
getErrors()method returns a list of errors if the operation failed. -
The
getResult()method returns the newly created ProductType if successful, otherwisenull. -
The
isSuccessful()method indicates whether 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 ProductType. |
| getResult() | AdsApp.ProductType |
Returns the newly created ProductType, 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 ProductType. Return values:
| Type | Description |
|---|---|
String[] |
The errors that occurred during the ProductTypeOperation . |
getResult()
Returns the newly created ProductType, or null if
the operation was unsuccessful. Return values:
| Type | Description |
|---|---|
AdsApp.ProductType |
The ProductType created by the ProductTypeOperation. |
isSuccessful()
Returns true if the operation was successful. Return values:
| Type | Description |
|---|---|
boolean |
true if the operation was successful. |