id property
Returns the numeric identifier for this category.
The id is the value used by store APIs and search filters.
Returns
- int: The category id.
Implementation
int get id {
final OperationResult resultString = objectMethod(
pointerId,
'LandmarkCategory',
'getId',
);
return resultString['result'];
}