landmarkStoreId property

int get landmarkStoreId

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.code sentinel when no parent store is present.

See also:

Implementation

int get landmarkStoreId {
  final OperationResult resultString = objectMethod(
    pointerId,
    'LandmarkCategory',
    'getLandmarkStoreId',
  );

  return resultString['result'];
}