SocialReportsOverlayInfoObject
Objective-C
@interface SocialReportsOverlayInfoObject : OverlayInfoObject
Swift
class SocialReportsOverlayInfoObject : OverlayInfoObject
This class encapsulates social reports overlay info details.
-
Returns the overlay categories list.
Declaration
Objective-C
- (nonnull NSArray<SocialReportsOverlayCategoryObject *> *) getCategoriesWithIsoCode:(nonnull NSString *)isoCode;
Swift
func getCategoriesWithIsoCode(_ isoCode: String) -> [SocialReportsOverlayCategoryObject]
Parameters
isoCode
The country ISO code for which the list is retrieved. Use empty String() for generic country.
-
Returns the overlay category by id.
Declaration
Objective-C
- (nullable SocialReportsOverlayCategoryObject *) getCategoryWithIdentifier:(int)categoryId isoCode:(nonnull NSString *)isoCode;
Swift
func getCategoryWithIdentifier(_ categoryId: Int32, isoCode: String) -> SocialReportsOverlayCategoryObject?
Parameters
categoryId
The category id
isoCode
The country ISO code for which the list is retrieved. Use empty String() for generic country.