landmarkStoreId property
Returns the parent landmark store identifier when this is a store-scoped category.
For categories that are not associated with a specific LandmarkStore the SDK
returns the GemError.notFound.code value.
Returns
- int: The parent landmark store id, or the
GemError.notFound.codesentinel when no parent store is present.
See also:
- LandmarkStore — Represents a collection of landmarks and categories.
- LandmarkStoreService.getLandmarkStoreById — Retrieves the LandmarkStore by its ID.
Implementation
int get landmarkStoreId {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkCategory',
'getLandmarkStoreId',
);
return resultString['result'];
}