enableSocialReportsWithCategory static method

GemError enableSocialReportsWithCategory(
  1. int categoryId
)

Enables the social reports overlay for a specified category.

Parameters

  • IN categoryId The overlay category id

Returns

Throws

  • An exception if it fails.

Implementation

static GemError enableSocialReportsWithCategory(int categoryId) {
  return OverlayService.enableOverlay(CommonOverlayId.socialReports.id,
      categUid: categoryId);
}