AATReportsDelegate
@objc public protocol AATReportsDelegate: AnyObject {
/// Notifies you of AATKit reports event.
/// - Parameter report: The report content.
func onReportSent(_ report: String)
}
@protocol AATReportsDelegate
/// Notifies you with AATKit reports event.
/// \param report The report content.
- (void)onReportSent:(NSString * _Nonnull)report;
@end
Last updated