Copied to your clipboard
static var extensionVersion: String
Copied to your clipboard
+ (nonnull NSString*) extensionVersion;
Copied to your clipboard
+ (nonnull NSString*) extensionVersion;
Copied to your clipboard
static func getVisitorProfile(completion: @escaping ([String: String]?, Error?) -> Void)
Copied to your clipboard
+ (void) getVisitorProfile:^(NSDictionary<NSString *,NSString *> * _Nullable visitorProfile, NSError * _Nullable error)completion
Copied to your clipboard
+ (void) getVisitorProfile:^(NSDictionary * _Nullable visitorProfile) callback;
+ (void) getVisitorProfileWithCompletionHandler:^(NSDictionary * _Nullable visitorProfile, NSError * _Nullable error) completionHandler;
Copied to your clipboard
static func reset()
Copied to your clipboard
+ (void) reset;
Copied to your clipboard
+ (void) reset;
Copied to your clipboard
static func signalWithData(data: [String: String], completion: @escaping ([String: String]?, Error?) -> Void)
Copied to your clipboard
+ (void) signalWithData:(NSDictionary<NSString *,NSString *> * _Nonnull data) completion:^(NSDictionary<NSString *,NSString *> * _Nullable vistorProfile, NSError * _Nullable error)completion
Copied to your clipboard
+ (void) signalWithData: (NSDictionary<NSString *, NSString *> * _Nullable) data
callback:^(NSDictionary* _Nullable visitorProfile) callback;
+ (void) signalWithData: (NSDictionary<NSString *, NSString *> * _Nonnull) data
withCompletionHandler:^(NSDictionary * _Nullable visitorProfile, NSError * _Nullable error) completionHandler;