removeStoreCategoryId method
Remove category ID from the specified store list.
Parameters
- IN storeId The store ID
- IN categoryId The category ID
Returns
- GemError.success on success
- GemError.notFound if no store with the given ID has been found or the category has not been found
Throws
- An exception if it fails.
Implementation
GemError removeStoreCategoryId(final int storeId, final int categoryId) {
final OperationResult resultString = objectMethod(
_pointerId,
'LandmarkStoreCollection',
'removeStoreCategoryId',
args: <String, int>{'storeId': storeId, 'categoryId': categoryId},
);
return GemErrorExtension.fromCode(resultString['result']);
}