disableSocialReportsWithCategory static method

GemError disableSocialReportsWithCategory(
  1. int categoryId
)

Disables 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 disableSocialReportsWithCategory(int categoryId) {
  return OverlayService.disableOverlay(CommonOverlayId.socialReports.id,
      categUid: categoryId);
}