removeAllStoreCategories method
- int storeId
Remove all categories of the specified store ID.
Parameters
- IN storeId The store ID
Returns
- GemError.success on success
- GemError.notFound if no store with the given ID has been found
Throws
- An exception if it fails.
Implementation
GemError removeAllStoreCategories(final int storeId) {
final OperationResult resultString = objectMethod(
_pointerId,
'LandmarkStoreCollection',
'removeAllStoreCategories',
args: storeId,
);
return GemErrorExtension.fromCode(resultString['result']);
}