addAllStoreCategories method
- int storeId
Add all categories from the specified store ID.
Parameters
- IN storeId The store ID
Returns
- GemError.success on success
- GemError.notFound if the store with the given id can't be found
Throws
- An exception if it fails.
Implementation
GemError addAllStoreCategories(final int storeId) {
final OperationResult resultString = objectMethod(
_pointerId,
'LandmarkStoreCollection',
'addAllStoreCategories',
args: storeId,
);
return GemErrorExtension.fromCode(resultString['result']);
}