remove method
- LandmarkStore lms
Remove all categories of the specified store.
Parameters
- IN lms The store
Returns
- GemError.success on success, otherwise see GemError for other values.
Throws
- An exception if it fails.
Implementation
GemError remove(final LandmarkStore lms) {
final OperationResult resultString = objectMethod(
_pointerId,
'LandmarkStoreCollection',
'remove',
args: lms.pointerId,
);
return GemErrorExtension.fromCode(resultString['result']);
}