diff --git a/KochavaTracker.xcframework/Info.plist b/KochavaTracker.xcframework/Info.plist
index bbccc04..6bf585f 100644
--- a/KochavaTracker.xcframework/Info.plist
+++ b/KochavaTracker.xcframework/Info.plist
@@ -6,7 +6,7 @@
LibraryIdentifier
- tvos-arm64_x86_64-simulator
+ macos-arm64_x86_64
LibraryPath
KochavaTracker.framework
SupportedArchitectures
@@ -15,61 +15,60 @@
x86_64
SupportedPlatform
- tvos
- SupportedPlatformVariant
- simulator
+ macos
LibraryIdentifier
- ios-arm64_armv7
+ tvos-arm64_x86_64-simulator
LibraryPath
KochavaTracker.framework
SupportedArchitectures
arm64
- armv7
+ x86_64
SupportedPlatform
- ios
+ tvos
+ SupportedPlatformVariant
+ simulator
LibraryIdentifier
- watchos-arm64_i386_x86_64-simulator
+ watchos-arm64_arm64_32_armv7k
LibraryPath
KochavaTracker.framework
SupportedArchitectures
arm64
- i386
- x86_64
+ arm64_32
+ armv7k
SupportedPlatform
watchos
- SupportedPlatformVariant
- simulator
LibraryIdentifier
- watchos-arm64_32_armv7k
+ ios-arm64_x86_64-maccatalyst
LibraryPath
KochavaTracker.framework
SupportedArchitectures
- arm64_32
- armv7k
+ arm64
+ x86_64
SupportedPlatform
- watchos
+ ios
+ SupportedPlatformVariant
+ maccatalyst
LibraryIdentifier
- ios-arm64_i386_x86_64-simulator
+ ios-arm64_x86_64-simulator
LibraryPath
KochavaTracker.framework
SupportedArchitectures
arm64
- i386
x86_64
SupportedPlatform
@@ -79,7 +78,7 @@
LibraryIdentifier
- tvos-arm64
+ ios-arm64
LibraryPath
KochavaTracker.framework
SupportedArchitectures
@@ -87,35 +86,35 @@
arm64
SupportedPlatform
- tvos
+ ios
LibraryIdentifier
- macos-arm64_x86_64
+ tvos-arm64
LibraryPath
KochavaTracker.framework
SupportedArchitectures
arm64
- x86_64
SupportedPlatform
- macos
+ tvos
LibraryIdentifier
- ios-arm64_x86_64-maccatalyst
+ watchos-arm64_i386_x86_64-simulator
LibraryPath
KochavaTracker.framework
SupportedArchitectures
arm64
+ i386
x86_64
SupportedPlatform
- ios
+ watchos
SupportedPlatformVariant
- maccatalyst
+ simulator
CFBundlePackageType
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVAAdNetwork.h b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVAAdNetwork.h
similarity index 55%
rename from KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVAAdNetwork.h
rename to KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVAAdNetwork.h
index 6ddf972..7f3dedb 100644
--- a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVAAdNetwork.h
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVAAdNetwork.h
@@ -1,9 +1,9 @@
//
// KVAAdNetwork.h
-// KochavaAdNetwork
+// KochavaTracker
//
// Created by John Bushnell on 8/20/20.
-// Copyright © 2020 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2020 - 2023 Kochava, Inc. All rights reserved.
//
@@ -33,7 +33,7 @@
typedef void (^ KVAAdNetworkDidRegisterAppForAttributionBlock)
(
KVAAdNetwork * _Nonnull adNetwork
-);
+ ) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVAAdNetwork.Closure_DidRegisterAppForAttribution'. Use 'KVAAdNetwork.Closure_DidRegisterAppForAttribution' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull adNetwork) = ^(KVAAdNetwork * _Nonnull adNetwork) { /* ... */ };");
diff --git a/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
new file mode 100644
index 0000000..66ae9c8
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
@@ -0,0 +1,47 @@
+//
+// KVAAdNetworkConversion.h
+// KochavaTracker
+//
+// Created by John Bushnell on 8/20/20.
+// Copyright © 2020 - 2023 Kochava, Inc. All rights reserved.
+//
+
+
+
+#ifndef KVAAdNetworkConversion_h
+#define KVAAdNetworkConversion_h
+
+
+
+#pragma mark - CLASS
+
+
+
+@class KVAAdNetworkConversion;
+@class KVAAdNetworkConversionResult;
+
+
+
+#pragma mark - Typealiases
+
+
+
+/*!
+ @typedef KVAAdNetworkConversionDidUpdateValueBlock
+
+ @brief A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+
+ @discussion Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+ */
+typedef void (^ KVAAdNetworkConversionDidUpdateValueBlock)
+(
+ KVAAdNetworkConversion * _Nonnull conversion,
+ KVAAdNetworkConversionResult * _Nonnull result
+ ) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue'. Use 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) = ^(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) { /* ... */ };");
+
+
+
+#endif
+
+
+
diff --git a/KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KVADeeplink.h b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVADeeplink.h
similarity index 50%
rename from KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KVADeeplink.h
rename to KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVADeeplink.h
index 9769ba6..78a3763 100644
--- a/KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KVADeeplink.h
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KVADeeplink.h
@@ -3,7 +3,7 @@
// KochavaTracker
//
// Created by John Bushnell on 10/14/19.
-// Copyright © 2019 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2019 - 2023 Kochava, Inc. All rights reserved.
//
@@ -33,7 +33,7 @@
typedef void (^ KVADeeplinkProcessCompletionHandler)
(
KVADeeplink * _Nonnull deeplink
-);
+) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVADeeplink.Closure_Process_DidComplete'. Use 'KVADeeplink.Closure_Process_DidComplete' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_process_didComplete)(KVADeeplink * _Nonnull deeplink) = ^(KVADeeplink * _Nonnull deeplink) { /* ... */ };");
diff --git a/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KochavaTracker-Swift.h b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KochavaTracker-Swift.h
new file mode 100644
index 0000000..5e444b0
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KochavaTracker-Swift.h
@@ -0,0 +1,1457 @@
+#if 0
+#elif defined(__arm64__) && __arm64__
+// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
+#ifndef KOCHAVATRACKER_SWIFT_H
+#define KOCHAVATRACKER_SWIFT_H
+#pragma clang diagnostic push
+#pragma clang diagnostic ignored "-Wgcc-compat"
+
+#if !defined(__has_include)
+# define __has_include(x) 0
+#endif
+#if !defined(__has_attribute)
+# define __has_attribute(x) 0
+#endif
+#if !defined(__has_feature)
+# define __has_feature(x) 0
+#endif
+#if !defined(__has_warning)
+# define __has_warning(x) 0
+#endif
+
+#if __has_include()
+# include
+#endif
+
+#pragma clang diagnostic ignored "-Wduplicate-method-match"
+#pragma clang diagnostic ignored "-Wauto-import"
+#if defined(__OBJC__)
+#include
+#endif
+#if defined(__cplusplus)
+#include
+#include
+#include
+#else
+#include
+#include
+#include
+#endif
+
+#if !defined(SWIFT_TYPEDEFS)
+# define SWIFT_TYPEDEFS 1
+# if __has_include()
+# include
+# elif !defined(__cplusplus)
+typedef uint_least16_t char16_t;
+typedef uint_least32_t char32_t;
+# endif
+typedef float swift_float2 __attribute__((__ext_vector_type__(2)));
+typedef float swift_float3 __attribute__((__ext_vector_type__(3)));
+typedef float swift_float4 __attribute__((__ext_vector_type__(4)));
+typedef double swift_double2 __attribute__((__ext_vector_type__(2)));
+typedef double swift_double3 __attribute__((__ext_vector_type__(3)));
+typedef double swift_double4 __attribute__((__ext_vector_type__(4)));
+typedef int swift_int2 __attribute__((__ext_vector_type__(2)));
+typedef int swift_int3 __attribute__((__ext_vector_type__(3)));
+typedef int swift_int4 __attribute__((__ext_vector_type__(4)));
+typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2)));
+typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3)));
+typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
+#endif
+
+#if !defined(SWIFT_PASTE)
+# define SWIFT_PASTE_HELPER(x, y) x##y
+# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y)
+#endif
+#if !defined(SWIFT_METATYPE)
+# define SWIFT_METATYPE(X) Class
+#endif
+#if !defined(SWIFT_CLASS_PROPERTY)
+# if __has_feature(objc_class_property)
+# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__
+# else
+# define SWIFT_CLASS_PROPERTY(...)
+# endif
+#endif
+
+#if __has_attribute(objc_runtime_name)
+# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X)))
+#else
+# define SWIFT_RUNTIME_NAME(X)
+#endif
+#if __has_attribute(swift_name)
+# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X)))
+#else
+# define SWIFT_COMPILE_NAME(X)
+#endif
+#if __has_attribute(objc_method_family)
+# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X)))
+#else
+# define SWIFT_METHOD_FAMILY(X)
+#endif
+#if __has_attribute(noescape)
+# define SWIFT_NOESCAPE __attribute__((noescape))
+#else
+# define SWIFT_NOESCAPE
+#endif
+#if __has_attribute(ns_consumed)
+# define SWIFT_RELEASES_ARGUMENT __attribute__((ns_consumed))
+#else
+# define SWIFT_RELEASES_ARGUMENT
+#endif
+#if __has_attribute(warn_unused_result)
+# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result))
+#else
+# define SWIFT_WARN_UNUSED_RESULT
+#endif
+#if __has_attribute(noreturn)
+# define SWIFT_NORETURN __attribute__((noreturn))
+#else
+# define SWIFT_NORETURN
+#endif
+#if !defined(SWIFT_CLASS_EXTRA)
+# define SWIFT_CLASS_EXTRA
+#endif
+#if !defined(SWIFT_PROTOCOL_EXTRA)
+# define SWIFT_PROTOCOL_EXTRA
+#endif
+#if !defined(SWIFT_ENUM_EXTRA)
+# define SWIFT_ENUM_EXTRA
+#endif
+#if !defined(SWIFT_CLASS)
+# if __has_attribute(objc_subclassing_restricted)
+# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# else
+# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA
+# endif
+#endif
+#if !defined(SWIFT_RESILIENT_CLASS)
+# if __has_attribute(objc_class_stub)
+# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub))
+# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME)
+# else
+# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME)
+# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME)
+# endif
+#endif
+
+#if !defined(SWIFT_PROTOCOL)
+# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
+# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA
+#endif
+
+#if !defined(SWIFT_EXTENSION)
+# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__)
+#endif
+
+#if !defined(OBJC_DESIGNATED_INITIALIZER)
+# if __has_attribute(objc_designated_initializer)
+# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer))
+# else
+# define OBJC_DESIGNATED_INITIALIZER
+# endif
+#endif
+#if !defined(SWIFT_ENUM_ATTR)
+# if defined(__has_attribute) && __has_attribute(enum_extensibility)
+# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility)))
+# else
+# define SWIFT_ENUM_ATTR(_extensibility)
+# endif
+#endif
+#if !defined(SWIFT_ENUM)
+# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
+# if __has_feature(generalized_swift_name)
+# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type
+# else
+# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility)
+# endif
+#endif
+#if !defined(SWIFT_UNAVAILABLE)
+# define SWIFT_UNAVAILABLE __attribute__((unavailable))
+#endif
+#if !defined(SWIFT_UNAVAILABLE_MSG)
+# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg)))
+#endif
+#if !defined(SWIFT_AVAILABILITY)
+# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__)))
+#endif
+#if !defined(SWIFT_WEAK_IMPORT)
+# define SWIFT_WEAK_IMPORT __attribute__((weak_import))
+#endif
+#if !defined(SWIFT_DEPRECATED)
+# define SWIFT_DEPRECATED __attribute__((deprecated))
+#endif
+#if !defined(SWIFT_DEPRECATED_MSG)
+# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__)))
+#endif
+#if __has_feature(attribute_diagnose_if_objc)
+# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning")))
+#else
+# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
+#endif
+#if defined(__OBJC__)
+#if !defined(IBSegueAction)
+# define IBSegueAction
+#endif
+#endif
+#if !defined(SWIFT_EXTERN)
+# if defined(__cplusplus)
+# define SWIFT_EXTERN extern "C"
+# else
+# define SWIFT_EXTERN extern
+# endif
+#endif
+#if !defined(SWIFT_CALL)
+# define SWIFT_CALL __attribute__((swiftcall))
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT noexcept
+#endif
+#else
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT
+#endif
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_CXX_INT_DEFINED)
+#define SWIFT_CXX_INT_DEFINED
+namespace swift {
+using Int = ptrdiff_t;
+using UInt = size_t;
+}
+#endif
+#endif
+#if defined(__OBJC__)
+#if __has_feature(modules)
+#if __has_warning("-Watimport-in-framework-header")
+#pragma clang diagnostic ignored "-Watimport-in-framework-header"
+#endif
+@import AppTrackingTransparency;
+@import Foundation;
+@import JavaScriptCore;
+@import KochavaCore;
+@import ObjectiveC;
+@import StoreKit;
+#endif
+
+#import
+
+#endif
+#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
+#pragma clang diagnostic ignored "-Wduplicate-method-arg"
+#if __has_warning("-Wpragma-clang-attribute")
+# pragma clang diagnostic ignored "-Wpragma-clang-attribute"
+#endif
+#pragma clang diagnostic ignored "-Wunknown-pragmas"
+#pragma clang diagnostic ignored "-Wnullability"
+#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
+
+#if __has_attribute(external_source_symbol)
+# pragma push_macro("any")
+# undef any
+# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="KochavaTracker",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol))
+# pragma pop_macro("any")
+#endif
+
+#if defined(__OBJC__)
+@class KVAAdNetworkConversion;
+
+/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
+SWIFT_CLASS_NAMED("KVAAdNetwork")
+@interface KVAAdNetwork : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// The current conversion information.
+@property (nonatomic, strong) KVAAdNetworkConversion * _Nonnull conversion;
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull);
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkDidRegisterAppForAttributionBlock _Nullable didRegisterAppForAttributionBlock SWIFT_DEPRECATED_MSG("", "closure_didRegisterAppForAttribution");
+@end
+
+@class KVAAdNetworkConversionResult;
+
+/// A feature which determines adnetwork conversion(s).
+SWIFT_CLASS_NAMED("KVAAdNetworkConversion")
+@interface KVAAdNetworkConversion : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkConversionDidUpdateValueBlock _Nullable didUpdateValueBlock SWIFT_DEPRECATED_MSG("", "closure_didUpdatePostbackValue");
+/// The current conversion result.
+/// This object will mutate when the current result is updated. If you want a immutable picture then you should take a copy.
+@property (nonatomic, strong) KVAAdNetworkConversionResult * _Nonnull result;
+@end
+
+
+/// A class which defines an adnetwork conversion event.
+SWIFT_CLASS_NAMED("KVAAdNetworkConversionEvent")
+@interface KVAAdNetworkConversionEvent : NSObject
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+/// A class which defines the parameters for the adnetwork conversion lock window.
+SWIFT_CLASS_NAMED("KVAAdNetworkConversionLockWindow")
+@interface KVAAdNetworkConversionLockWindow : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+@end
+
+@class KVAContext;
+@class NSString;
+@class NSNumber;
+
+/// The adnetwork conversion result.
+SWIFT_CLASS_NAMED("KVAAdNetworkConversionResult")
+@interface KVAAdNetworkConversionResult : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
+/// Return the conversion value integer which is used with the SKAdNetwork updatePostbackConversionValue API.
+/// Apple currently restricts this value to 6-bits. This is a combination (OR) of the translated value (translatedValueIntNumber) with any extension interval value (extensionIntervalTranslatedValueInt.integerValue).
+- (NSInteger)valueInt SWIFT_WARN_UNUSED_RESULT;
+/// The coarse value.
+@property (nonatomic, readonly) SKAdNetworkCoarseConversionValue _Nullable coarseValue SWIFT_AVAILABILITY(ios_app_extension,introduced=16.0) SWIFT_AVAILABILITY(ios,introduced=16.0);
+@property (nonatomic, readonly) NSError * _Nullable error;
+/// A string which represents the model used for the conversion.
+@property (nonatomic, readonly, copy) NSString * _Nullable modelString;
+@property (nonatomic, readonly, strong) NSNumber * _Nullable translatedValueIntNumber;
+/// A number representing the raw value.
+/// This is a raw value which has not had any translations applied yet. This also does not include any extension interval value (extensionIntervalTranslatedValueInt).
+@property (nonatomic, strong) NSNumber * _Nullable rawValueNumber;
+@end
+
+
+/// A feature which provides measurement for App Clips.
+SWIFT_CLASS_NAMED("KVAAppClips")
+@interface KVAAppClips : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+
+/// A feature which may be used to limit advertising tracking from the level of the application (or host).
+SWIFT_CLASS_NAMED("KVAAppLimitAdTracking")
+@interface KVAAppLimitAdTracking : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// A boolean which indicates if you want to limit ad tracking at the application level.
+/// This feature is related to the Limit Ad Tracking feature which is typically found on an Apple device under Settings, Privacy, Advertising. In the same way that you can limit ad tracking through that setting, this feature provides a second and independent means for the host app to limit ad tracking by asking the user directly. A value of true from either this feature or Apple’s will result in the limiting of ad tracking.
+@property (nonatomic) BOOL boolean;
+@end
+
+
+/// A feature which interfaces with Apple’s App Tracking Transparency system.
+SWIFT_CLASS_NAMED("KVAAppTrackingTransparency")
+@interface KVAAppTrackingTransparency : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Notify that a request for tracking authorization did complete.
+/// \param status The provided authorization status.
+///
+- (void)authorizationDidCompleteWithStatus:(ATTrackingManagerAuthorizationStatus)status SWIFT_AVAILABILITY(ios_app_extension,introduced=14.0) SWIFT_AVAILABILITY(tvos,introduced=14.0) SWIFT_AVAILABILITY(maccatalyst,introduced=14.0) SWIFT_AVAILABILITY(macos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=14.0);
+/// A boolean which indicates if the instance should automatically request tracking authorization.
+/// Default true. Subject to server-based override. Also subject to enabledBool. See enabledBool.
+@property (nonatomic) BOOL autoRequestTrackingAuthorizationBool;
+/// A time interval to wait for the request for tracking authorization before proceeding to send the install.
+/// Default 30.0. Subject to server-based override. This provides time to wait to obtain the authorization necessary to collect the IDFA.
+@property (nonatomic) NSTimeInterval authorizationStatusWaitTimeInterval;
+/// A boolean indicating if this feature is enabled.
+/// Default: false.
+@property (nonatomic) BOOL enabledBool;
+/// The authorization status expressed as an NSString.
+/// This is optional and will be nil until a status is known. For this reason this can be checked as a means of determining if a status has been determined. Current possible values: “authorized”, “denied”, “notDetermined”, “restricted”, “unknown”.
+@property (nonatomic, readonly, copy) NSString * _Nullable authorizationStatusString;
+@end
+
+
+/// A feature which interfaces with Apple Search Ads.
+SWIFT_CLASS_NAMED("KVAAppleSearchAds")
+@interface KVAAppleSearchAds : NSObject
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+/// A feature which provides for attribution through Apple’s Apple Search Ads method 3.
+SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod3")
+@interface KVAAppleSearchAdsMethod3 : NSObject
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+/// Apple’s attribution as provided by Apple Search Ads method 3.
+SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod3Attribution")
+@interface KVAAppleSearchAdsMethod3Attribution : NSObject
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+@class KVAAttributionResult;
+
+/// A feature which provides attribution information related to the install.
+SWIFT_CLASS_NAMED("KVAAttribution")
+@interface KVAAttribution : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Get the attribution result with a completion handler.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
+///
+- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))closure_didComplete;
+/// The current attribution result.
+/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(closure_didComplete:)
+@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
+/// A closure which is called when attribution is retrieved.
+@property (nonatomic, copy) void (^ _Nullable closure_didRetrieveResult)(KVAAttribution * _Nonnull, KVAAttributionResult * _Nonnull);
+/// A boolean indicating if an attribution result should be retrieved.
+/// This boolean does not need to be set if you are using func retrieveResult(closure_didComplete:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
+@property (nonatomic) BOOL retrieveResultBool;
+@end
+
+
+/// The attribution result.
+SWIFT_CLASS_NAMED("KVAAttributionResult")
+@interface KVAAttributionResult : NSObject
+- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
+/// A boolean indicating if the result attributed the install.
+@property (nonatomic, readonly) BOOL attributedBool;
+/// A boolean indicating if the current install is the first install.
+@property (nonatomic, readonly) BOOL firstInstallBool;
+/// A dictionary containing the raw result information.
+@property (nonatomic, readonly, copy) NSDictionary * _Nullable rawDictionary;
+/// A boolean indicating if the result was successfully retrieved.
+@property (nonatomic, readonly) BOOL retrievedBool;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+/// A feature which is responsible for custom identifiers.
+SWIFT_CLASS_NAMED("KVACustomIdentifiers")
+@interface KVACustomIdentifiers : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Register a custom identifier.
+/// In order to send a custom identifier it must be whitelisted on your account.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register a custom identifier.
+/// In order to send a custom identifier it must be whitelisted on your account.
+/// \param nameString The name of the identifier.
+///
+/// \param identifierString The identifier.
+///
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
+@end
+
+@class NSURL;
+@protocol KVADeeplinksProcessorProvider;
+@class KVANetworking;
+
+/// A deeplink.
+SWIFT_CLASS_NAMED("KVADeeplink")
+@interface KVADeeplink : NSObject
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param completionHandler A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:", "processWithURL:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param completionHandler A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:", "processWithURL:timeoutTimeInterval:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param completionHandler A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:", "processWithURL:processor:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param completionHandler A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:", "processWithURL:timeoutTimeInterval:processor:closure_didComplete:");
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
+- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+/// The deeplink url as provided by the operating system.
+@property (nonatomic, copy) NSString * _Nullable urlString;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
+/// The destination for the deeplink.
+@property (nonatomic, copy) NSString * _Nullable destinationString;
+/// A dictionary containing raw information about the deeplink.
+@property (nonatomic, copy) NSDictionary * _Nullable rawDictionary;
+@end
+
+
+SWIFT_PROTOCOL("_TtP14KochavaTracker21KVADeeplinksProcessor_")
+@protocol KVADeeplinksProcessor
+/// Process a deeplink.
+/// \param deeplink An instance of KVADeeplink.
+///
+/// \param timeoutTimeInterval A timeout time interval.
+///
+/// \param closure_didComplete A completion handler to call when processing is complete.
+///
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
+@end
+
+
+/// A feature which measures deeplink activity.
+SWIFT_CLASS_NAMED("KVADeeplinks")
+@interface KVADeeplinks : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+/// Augment deferred prefetch.
+/// \param name The name for the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)augmentDeferredPrefetchWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Process a deeplink.
+/// \param deeplink An instance of KVADeeplink.
+///
+/// \param timeoutTimeInterval A timeout time interval.
+///
+/// \param closure_didComplete A completion handler to call when processing is complete.
+///
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
+@end
+
+
+
+SWIFT_PROTOCOL("_TtP14KochavaTracker29KVADeeplinksProcessorProvider_")
+@protocol KVADeeplinksProcessorProvider
+/// A property which conforms to protocol KVADeeplinksProcessor.
+@property (nonatomic, readonly, strong) id _Nullable deeplinksProcessor;
+@end
+
+
+/// A feature which is responsible for the identification of a device.
+SWIFT_CLASS_NAMED("KVADeviceId")
+@interface KVADeviceId : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install.
+@property (nonatomic, readonly, copy) NSString * _Nullable string;
+@end
+
+@class KVAEventType;
+@protocol KVAEventSenderProvider;
+@class KVAConsent;
+@class NSDate;
+@class NSDecimalNumber;
+
+/// The class KVAEvent provides a means of defining a post-install event, providing standardized parameters.
+SWIFT_CLASS_NAMED("KVAEvent")
+@interface KVAEvent : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Create an event.
+/// The designated initializer.
+/// \param type An event type.
+///
+- (nonnull instancetype)initWithType:(KVAEventType * _Nonnull)type OBJC_DESIGNATED_INITIALIZER;
+/// Create an event with a type— using modern Objective-C syntax.
++ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]", "init(type:)");
+/// Create an event with a typeNameString.
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
+- (nonnull instancetype)initWithTypeNameString:(NSString * _Nonnull)typeNameString;
+/// Create an event with a typeNameString— using modern Objective-C syntax.
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
++ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]", "init(typeNameString:)");
+/// Return a description of the instance.
+@property (nonatomic, readonly, copy) NSString * _Nonnull description;
+/// Send the event using the default KVAEventSenderProvider.
+/// The default is the shared instance of class KVATracker
.
+- (void)send;
+/// Send the event with a specified array of KVAEventSenderProvider(s).
+- (void)sendWithSenderArray:(NSArray> * _Nullable)senderProviderArray;
+/// Return a string representation of the name of the event.
+/// a.k.a. “event_name”
+- (NSString * _Nonnull)eventNameString SWIFT_WARN_UNUSED_RESULT;
+/// Return any valueObject for a given propertyIdentifier.
+/// \param propertyIdentifier A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
+///
+- (id _Nullable)valueObjectForPropertyIdentifier:(NSString * _Nullable)propertyIdentifier SWIFT_WARN_UNUSED_RESULT;
+- (NSString * _Nullable)subURLIdString SWIFT_WARN_UNUSED_RESULT;
+/// A type for the event
+/// Although these types are standardized, custom events are designated using type .custom.
+@property (nonatomic, readonly, strong) KVAEventType * _Nonnull eventType;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
+/// A boolean indicating if an asynchronous dispatch should occur when the event is sent.
+/// Default true. The default behavior dispatches the sending of an event to the default queue that should be used when sending the event (i.e. KVADispatchQueue.globalSerial). If it is known that you are already on the appropriate queue, you may set this to true to avoid an additional dispatch. This can have the effect of fine tuning behavior to ensure that related operations essentially occur atomically. It is important to not use this feature if you are not on the appropriate queue already.
+/// note:
+/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
+@property (nonatomic) BOOL sendAsyncBool;
+/// A boolean indicating if a LogMessage should be printed when the event is sent.
+/// Default true. The default behavior prints a log message when the event is sent. The corresponding log message is presented as though the event was sent by a call from the host. This boolean can be set to false so that the event will be sent silently, and not appear as though it was sent by a call the host.
+/// note:
+/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
+@property (nonatomic) BOOL sendLogMessagePrintBool;
+/// A boolean which when set will cause the event to be serviced locally when sent.
+/// When serviced locally the response for the request is provided locally and the request is post the event to the server is never made. In every other respect the effects are the same. AdNetwork conversion information is still calculated.
+@property (nonatomic) BOOL serviceLocallyBool;
+/// A property containing an action string.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable actionString;
+/// A property containing an ad campaign identifier string.
+/// This is expected to contain a string corresponding to an ad campaign identifier.
+@property (nonatomic, copy) NSString * _Nullable adCampaignIdString;
+/// A property containing an ad campaign name string.
+/// This is expected to contain a string corresponding to an ad campaign name.
+@property (nonatomic, copy) NSString * _Nullable adCampaignNameString;
+/// A property containing an ad device type string.
+/// This is expected to contain a string corresponding to a device type.
+@property (nonatomic, copy) NSString * _Nullable adDeviceTypeString;
+/// A property containing an ad group identifier string.
+/// This is expected to contain a string corresponding to an ad group identifier.
+@property (nonatomic, copy) NSString * _Nullable adGroupIdString;
+/// A property containing an ad group name string.
+/// This is expected to contain a string corresponding to an ad group name.
+@property (nonatomic, copy) NSString * _Nullable adGroupNameString;
+/// A property containing an ad mediation network name string.
+/// This is expected to contain a standardized string corresponding to an advertising network. It is the name of the network that was used during mediation.
+@property (nonatomic, copy) NSString * _Nullable adMediationNameString;
+/// A property containing an ad network name string.
+/// This is expected to contain a standardized string corresponding to an advertising network.
+@property (nonatomic, copy) NSString * _Nullable adNetworkNameString;
+/// A property containing an ad placement string.
+/// This is expected to contain a string corresponding to an ad placement, ad unit, etc.
+@property (nonatomic, copy) NSString * _Nullable adPlacementString;
+/// A property containing an ad size string.
+/// This is expected to contain a string corresponding to an ad size.
+@property (nonatomic, copy) NSString * _Nullable adSizeString;
+/// A property containing an ad type string.
+/// This is expected to contain a string corresponding to an ad type.
+@property (nonatomic, copy) NSString * _Nullable adTypeString;
+/// A boolean indicating that this event originated from an Apple Watch.
+@property (nonatomic) BOOL appleWatchBool;
+/// A string containing a unique identifier associated with the Apple Watch from which this event originated.
+/// Optional. You may set this property in addition to appleWatchBool if you have a unique identifier associated with the watch.
+@property (nonatomic, copy) NSString * _Nullable appleWatchIdString;
+/// A property containing an App Store receipt which has been converted into a base64 encoded string.
+/// The format of the information is expected to be that which is provided by the main bundle’s appStoreReceiptURL method, the data of which being loaded and base-64-string-encoded.
+@property (nonatomic, copy) NSString * _Nullable appStoreReceiptBase64EncodedString;
+/// A property containing a boolean wrapped in an NSNumber which indicates that something is background.
+/// This is expected to contain a boolean which indicates if something is background, or occurred while in the background. This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, strong) NSNumber * _Nullable backgroundBoolNumber;
+/// A property indicating whether a checkout took place as a guest.
+/// This is generally taken to be a boolean, but it is passed as a string so that you can provide more than two states. Suggested values are “true” and “false”, but can also be values such as “yes”, “no”, or “partial”.
+@property (nonatomic, copy) NSString * _Nullable checkoutAsGuestString;
+/// A property containing a boolean wrapped in an NSNumber which indicates that something is completed.
+/// This is expected to contain a boolean which indicates if something is completed. This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, strong) NSNumber * _Nullable completedBoolNumber;
+/// An instance of KVAConsent.
+@property (nonatomic, strong) KVAConsent * _Nullable consent;
+/// A property containing a content identifier string.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable contentIdString;
+/// A property containing a content type string.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable contentTypeString;
+/// A property containing a currency type string.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable currencyString;
+/// A property containing a custom event name string.
+/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventName property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
+@property (nonatomic, copy) NSString * _Nullable customEventName;
+@property (nonatomic, copy) NSString * _Nullable customEventNameString SWIFT_DEPRECATED_MSG("", "customEventName");
+/// A property containing a date.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSDate * _Nullable date;
+/// A property containing a date string. “dateString” can be used as an alternate to “date” when a specific date format is desired.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable dateString;
+/// A property containing a description. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable descriptionString;
+/// A property containing a destination. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable destinationString;
+/// A property that contains a duration. It is a time interval that is wrapped in an NSNumber.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, strong) NSNumber * _Nullable durationTimeIntervalNumber;
+/// A property that contains an end date.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSDate * _Nullable endDate;
+/// A property that contains an end date. “endDateString” can be used as an alternate to “endDate” when a specific date format is desired.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable endDateString;
+/// A property containing an informational dictionary of key/value pairs.
+/// A information dictionary. The keys and values can be any alphanumeric string value. This field has an entirely generic quality, in that it can contain whatever you consider to be fitting value. The dictionary should not contain sub-dictionaries. The maximum supported depth is 10, after which containers and elements will be redacted. Instances of NSNull will also be redacted, and custom classes are not supported.
+@property (nonatomic, copy) NSDictionary * _Nullable infoDictionary;
+/// A property containing an informational string.
+/// A informational string. This can be any alphanumeric string value. This field has an entirely generic quality, in that it can contain whatever you consider to be fitting value.
+/// If the string passed is all numeric (and may include a decimal point), Kochava will automatically sum the amounts passed for the same nameString. For example, if you sent the purchase amount of in-app purchases in infoString and named nameString “IAP – Purchase Price”, Kochava would add up all the purchase amounts for you and present them as a total for “IAP – Purchase Price”. Regardless of what is passed in infoString, Kochava’s user dashboard will let you access all the data passed in infoString for any nameString, and present a count of all times an event was sent passing any given nameString.
+/// NOTE: If you pass a string of JSON represented data, only the root level (no nested chunks) is stored. Also, a limit of 75 characters is applied for a non-JSON-decodable string passed as an event infoString.
+@property (nonatomic, copy) NSString * _Nullable infoString;
+/// A property that contains an indication of where an item as added from. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable itemAddedFromString;
+/// A property that contains a level. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable levelString;
+/// A property that contains a maximum rating value. It is a double that is wrapped in an NSNumber. This property is used in conjunction with ratingValueDoubleNumber.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, strong) NSNumber * _Nullable maxRatingValueDoubleNumber;
+/// A property that contains a name. It can be a human name or the name of any other item type. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value. It can be a person’s name or the name of any other object.
+@property (nonatomic, copy) NSString * _Nullable nameString;
+/// A property that contains an order id. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable orderIdString;
+/// A property that contains an origin. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable originString;
+/// A property that contains a payload in the form of a dictionary.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value. The maximum supported depth is 9, after which containers and elements will be redacted. Instances of NSNull will also be redacted, and custom classes are not supported.
+@property (nonatomic, copy) NSDictionary * _Nullable payloadDictionary;
+/// A property that contains a price.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value. Because it uses an NSDecimalNumber, it is better suited for preserving decimal precision than priceDoubleNumber. priceDecimalNumber and priceDoubleNumber share the same key when sent to the server. If both are set, the value within priceDecimalNumber will win.
+@property (nonatomic, strong) NSDecimalNumber * _Nullable priceDecimalNumber;
+/// A property that contains a price. It is a double that is wrapped in an NSNumber.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value. In order to better preserve decimal precision, see priceDecimalNumber. priceDecimalNumber and priceDoubleNumber share the same key when sent to the server. If both are set, the value within priceDecimalNumber will win.
+@property (nonatomic, strong) NSNumber * _Nullable priceDoubleNumber;
+/// A property that contains a quantity. It is a double that is wrapped in an NSNumber.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, strong) NSNumber * _Nullable quantityDoubleNumber;
+/// A property that contains a rating value. It is a double that is wrapped in an NSNumber.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, strong) NSNumber * _Nullable ratingValueDoubleNumber;
+/// A property that contains a receipt id. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable receiptIdString;
+/// A property that contains where something was referred from. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable referralFromString;
+/// A property that contains a registration method. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable registrationMethodString;
+/// A property that contains results. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable resultsString;
+/// A property that contains a score. It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable scoreString;
+/// A property that contains a search term (or terms). It is a string that can contain any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable searchTermString;
+/// A property that contains a source string.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable sourceString;
+/// A property that contains a spatial coordinate’s x value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value. One such application is to record the occurrence of events in 3D Gamespace.
+@property (nonatomic, strong) NSNumber * _Nullable spatialXDoubleNumber;
+/// A property that contains a spatial coordinate’s y value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value. One such application is to record the occurrence of events in 3D Gamespace.
+@property (nonatomic, strong) NSNumber * _Nullable spatialYDoubleNumber;
+/// A property that contains a spatial coordinate’s z value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value. One such application is to record the occurrence of events in 3D Gamespace.
+@property (nonatomic, strong) NSNumber * _Nullable spatialZDoubleNumber;
+/// A property that contains a start date.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSDate * _Nullable startDate;
+/// A property that contains a start date. “startDateString” is a string that can be used as an alternate to “startDate” when a specific display format is desired.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable startDateString;
+/// A property that contains a success string. It is a string that can be any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable successString;
+/// A property that contains a user id. It is a string that can be any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable userIdString;
+/// A property that contains a URI (or URL) string.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable uriString;
+/// A property that contains a username. This is intended to be used to store an account-syle username, as opposed to a user’s name (compare “nameString”). It is a string that can be any alphanumeric value.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable userNameString;
+/// A property that contains a validated string. It is a string that is intended to contain a boolean-like value, such as “true” or “false”. It can also contain other custom values such as “partial”.
+/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
+@property (nonatomic, copy) NSString * _Nullable validatedString;
+@end
+
+
+@interface KVAEvent (SWIFT_EXTENSION(KochavaTracker))
+@end
+
+
+@interface KVAEvent (SWIFT_EXTENSION(KochavaTracker))
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.", "sendCustomWithEventName:");
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.", "sendCustomWithEventName:senderArray:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.", "sendCustomWithEventName:infoDictionary:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.", "sendCustomWithEventName:infoDictionary:senderArray:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.", "sendCustomWithEventName:infoString:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.", "sendCustomWithEventName:infoString:senderArray:");
+/// Create an event with event type KVAEventType.custom.
+/// \param eventName A string containing the custom event name.
+///
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName;
+/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
+/// \param eventName A string containing the custom event name.
+///
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]", "init(customWithEventName:)");
+/// Create an event with event type KVAEventType.custom.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]", "init(customWithEventName:infoDictionary:)");
+/// Create an event with event type KVAEventType.custom.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
+/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]", "init(customWithEventName:infoString:)");
+@end
+
+
+SWIFT_PROTOCOL("_TtP14KochavaTracker14KVAEventSender_")
+@protocol KVAEventSender
+/// Send an event from the device to the appropriate server(s).
+/// \param event A KVAEvent configured with the values you want to associate with the event.
+///
+- (void)sendEvent:(KVAEvent * _Nonnull)event;
+@end
+
+
+SWIFT_PROTOCOL("_TtP14KochavaTracker22KVAEventSenderProvider_")
+@protocol KVAEventSenderProvider
+/// A property which conforms to protocol KVAEventSender.
+@property (nonatomic, readonly, strong) id _Nonnull eventSender;
+@end
+
+
+/// A class which defines an event type.
+SWIFT_CLASS_NAMED("KVAEventType")
+@interface KVAEventType : NSObject
+/// An event type which signifies that an achievement was achieved. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull achievement;)
++ (KVAEventType * _Nonnull)achievement SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that an ad was clicked.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull adClick;)
++ (KVAEventType * _Nonnull)adClick SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that an item was added to a cart. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull addToCart;)
++ (KVAEventType * _Nonnull)addToCart SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that an item was added to a wish list. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull addToWishList;)
++ (KVAEventType * _Nonnull)addToWishList SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that an ad was viewed. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull adView;)
++ (KVAEventType * _Nonnull)adView SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a checkout was started. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull checkoutStart;)
++ (KVAEventType * _Nonnull)checkoutStart SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that consent was granted.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull consentGranted;)
++ (KVAEventType * _Nonnull)consentGranted SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a customEventName will be supplied.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull custom;)
++ (KVAEventType * _Nonnull)custom SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that there was a deep link.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull deeplink;)
++ (KVAEventType * _Nonnull)deeplink SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a level was completed. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull levelComplete;)
++ (KVAEventType * _Nonnull)levelComplete SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a purchase was completed. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull purchase;)
++ (KVAEventType * _Nonnull)purchase SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a push notification was opened.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull pushOpened;)
++ (KVAEventType * _Nonnull)pushOpened SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a push notification was received.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull pushReceived;)
++ (KVAEventType * _Nonnull)pushReceived SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that an item was rated. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull rating;)
++ (KVAEventType * _Nonnull)rating SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a registration was completed. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull registrationComplete;)
++ (KVAEventType * _Nonnull)registrationComplete SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a search was performed. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull search;)
++ (KVAEventType * _Nonnull)search SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a trial was started.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull startTrial;)
++ (KVAEventType * _Nonnull)startTrial SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that there was a subscription.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull subscribe;)
++ (KVAEventType * _Nonnull)subscribe SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that a tutorial was completed. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull tutorialComplete;)
++ (KVAEventType * _Nonnull)tutorialComplete SWIFT_WARN_UNUSED_RESULT;
+/// An event type which signifies that an item was viewed. You may use this in any equivalent circumstance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull view;)
++ (KVAEventType * _Nonnull)view SWIFT_WARN_UNUSED_RESULT;
+/// Return a description of the instance.
+@property (nonatomic, readonly, copy) NSString * _Nonnull description;
+/// The name.
+/// Examples: “Add to Cart”, “Add to Wish List”, “Achievement”, etc.
+@property (nonatomic, readonly, copy) NSString * _Nonnull nameString;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+/// A feature which tracks user behavior and actions beyond the install.
+SWIFT_CLASS_NAMED("KVAEvents")
+@interface KVAEvents : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+- (void)sendEvent:(KVAEvent * _Nonnull)event;
+@end
+
+
+/// A feature which is responsible for linking identities.
+SWIFT_CLASS_NAMED("KVAIdentityLink")
+@interface KVAIdentityLink : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Register an identity link.
+/// note:
+/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register an identity link.
+/// note:
+/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
+/// \param nameString The name of the identifier.
+///
+/// \param identifierString The identifier.
+///
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
+@end
+
+
+/// A feature which provides information about the install.
+SWIFT_CLASS_NAMED("KVAInstall")
+@interface KVAInstall : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// The date that the install did start first.
+/// This will be nil until the first time that the start function for the tracker has executed.
+@property (nonatomic, readonly, copy) NSDate * _Nullable didStartFirstDate;
+@end
+
+@class KVAPushNotificationsToken;
+
+SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPushNotificationsTokenRegistrar_")
+@protocol KVAPushNotificationsTokenRegistrar
+- (void)registerToken:(KVAPushNotificationsToken * _Nonnull)token;
+@end
+
+
+/// A feature which provides for the measurement of push notifications.
+SWIFT_CLASS_NAMED("KVAPushNotifications")
+@interface KVAPushNotifications : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+- (void)registerToken:(KVAPushNotificationsToken * _Nonnull)token;
+/// A boolean indicating if push notifications is enabled.
+@property (nonatomic) BOOL enabledBool;
+@end
+
+@class NSData;
+@protocol KVAPushNotificationsTokenRegistrarProvider;
+
+/// A push notifications token.
+SWIFT_CLASS_NAMED("KVAPushNotificationsToken")
+@interface KVAPushNotificationsToken : NSObject
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
+///
++ (void)registerWithData:(NSData * _Nonnull)data;
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
+///
+/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
+///
++ (void)registerWithData:(NSData * _Nonnull)data registrarArray:(NSArray> * _Nullable)registrarArray;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
+///
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
+///
+/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
+///
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString registrarArray:(NSArray> * _Nullable)registrarArray;
+- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+/// The token data as provided by the operating system.
+@property (nonatomic, readonly, copy) NSData * _Nullable data;
+/// The date that the token was provided by the operating system.
+@property (nonatomic, readonly, copy) NSDate * _Nullable providedDate;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+
+SWIFT_PROTOCOL("_TtP14KochavaTracker42KVAPushNotificationsTokenRegistrarProvider_")
+@protocol KVAPushNotificationsTokenRegistrarProvider
+/// A property which conforms to protocol KVAPushNotificationsTokenRegistrar.
+@property (nonatomic, readonly, strong) id _Nonnull pushNotificationsTokenRegistrar;
+@end
+
+
+/// A class which encapsulates a session.
+SWIFT_CLASS_NAMED("KVASession")
+@interface KVASession : NSObject
+- (nonnull instancetype)init SWIFT_UNAVAILABLE;
++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
+@end
+
+
+/// A feature which provides for the measurement of sessions.
+SWIFT_CLASS_NAMED("KVASessions")
+@interface KVASessions : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+@class KVATrackerConfig;
+@class KVATrackerGeneral;
+@class KVAPrivacy;
+@protocol KVAPrivacyProfileRegistrar;
+
+/// The class KVATracker provides an interface between a host application and Kochava’s Attribution and Measurement servers.
+SWIFT_CLASS_NAMED("KVATracker")
+@interface KVATracker : NSObject
+/// A shared instance, for convenience.
+/// This is the preferred way of using a tracker. To complete the integration you must call func start(withAppGUIDString:)
or func start(withPartnerNameString:)
. You may alternatively use a constructor to create your own tracker. The shared instance simplifies your implementation as you do not need to store a tracker instance somewhere in a public location in your own code.
+/// By default this instance will use the default storage location equivalent to calling init(storageIdentifier:)
with storageIdentifier nil. If you wish to specify an alternative storage location, see var sharedStorageIdentifier
.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVATracker * _Nonnull shared;)
++ (KVATracker * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+/// A shared instance, for convenience— optional.
+/// See var shared
. This variable will be nil prior to the shared instance being defaulted. This may be used to optionally invalidate any existing shared instance without causing it to first be defaulted in the process.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVATracker * _Nullable shared_optional;)
++ (KVATracker * _Nullable)shared_optional SWIFT_WARN_UNUSED_RESULT;
+/// The shared instance, an ambiguated form of the var shared
which conforms to protocol KVASharedPropertyProvider.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull sharedInstance;)
++ (id _Nonnull)sharedInstance SWIFT_WARN_UNUSED_RESULT;
+/// Create a tracker.
+/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
+/// Example
+/// \code
+/// class MyClass
+/// {
+/// let tracker = KVATracker()
+/// }
+///
+/// \endcode
+- (nonnull instancetype)init;
+/// Create a tracker.
+/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
+/// Example
+/// \code
+/// class MyClass
+/// {
+/// let tracker = KVATracker(storageIdentifier: "alternate")
+/// }
+///
+/// \endcode\param storageIdentifier An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+///
+- (nonnull instancetype)initWithStorageIdentifier:(NSString * _Nullable)storageIdentifier OBJC_DESIGNATED_INITIALIZER;
+/// Create a tracker— using modern Objective-C syntax.
+/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
+/// note:
+/// This convenience constructor exists for Objective-C and is expected to be removed in a future version. In Swift you should use default constructor KVATracker()— or preferably, the shared instance.
+/// Example
+/// \code
+/// KVATracker *tracker = KVATracker.tracker;
+///
+/// \endcode
++ (nonnull instancetype)tracker SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.", "init()");
+/// Create a tracker— using modern Objective-C syntax.
+/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
+/// Example
+/// \code
+/// KVATracker *tracker = [KVATracker trackerWithStorageIdentifier:@"alternate"];
+///
+/// \endcodenote:
+/// This convenience constructor exists for Objective-C and is expected to be removed in a future version. In Swift you should use default constructor KVATracker(storageIdentifier:)— or preferably, the shared instance.
+/// \param storageIdString An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+///
++ (nonnull instancetype)trackerWithStorageIdString:(NSString * _Nullable)storageIdString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.", "init(storageIdentifier:)");
+/// Configure the instance with an object.
+/// This is the same method which is used to configure the instance when the config
response is returned from Kochava’s servers (aka kvinit). It can also be called from the host to change the defaults of various parameters (or else override them). The structure of the object you provide has the same capability as that which the server may return. Additionally you can wrap the parameters you provide in special objects with special keys $default$
, $default.append$
, $override$
, or $override.append$
, to indicate how these options are treated relative to the server’s options.
+/// | Special Key | Treatment |
+/// — | —
+/// $default$ | Elements within this object will serve as a default for any options of the same name when not specified by the server. The use of this option will replace any previous use of $default$
or $default.append$
.
+/// $default.append$ | Elements within this object will append to any previously established $default$
. You may use this without using $default$
first, allowing you to specify multiple defaults over the course of multiple configuration calls. The use of this option is generally considered preferred relative to the others. That is because as a default it still allows for the server to specify overrides, and as an append it will respect any other previous configuration calls which you may have made at other times and places.
+/// $override$ | Elements within this object will override any options of the same name specified by the server. Use this option when you do not want to allow the server to specify overrides. The use of this option will replace any previous use of $override$
or $override.append$
.
+/// $override.append$ | Elements within this object will append to any previously established $override$
. You may use this without using $override$
first, allowing you to specify multiple overrides over the course of multiple configuration calls. The use of this option is generally preferred to $override$
. That is because as an append it will respect any other previous configuration calls which you may have made at other times and places.
+/// The following example will deny the collection of two datapoints, the idfa and idfv. Ordinarily the best way to do this is through the Kochava dashboard, where these can be controlled within multiple version(s) of an app already in production. However, if at build time you wanted to explicitly override server-side control, such that these two items effectively always appear in the deny datapoints list, the following code would do so:
+/// Example
+/// \code
+/// // trackerConfigureObject
+/// let trackerConfigureObject =
+/// [
+/// "$override.append$":
+/// [
+/// "privacy":
+/// [
+/// "deny_datapoints":
+/// [
+/// "idfa",
+/// "idfv"
+/// ]
+/// ]
+/// ]
+/// ]
+///
+/// // KVATracker
+/// KVATracker.shared.configure(with: trackerConfigureObject, context: .host)
+/// KVATracker.shared.start(withAppGUIDString: "koapple-sdk-h-random-sn4i")
+///
+/// \endcode\param object An object from which to configure the instance. This is most commonly a JSON object.
+///
+/// \param context The context from which the object was provided. In rare cases this may have some bearing on the proper interpretation of what was provided. When this method is called from the host, whether an app or an app extension, the specified context should be .host
.
+///
+- (void)configureWith:(id _Nullable)object context:(KVAContext * _Nullable)context;
+/// Start the tracker with an appGUIDString.
+/// You may start a tracker with either an appGUIDString or a partnerNameString. Most commonly this is done with an appGUIDString. See also func start(withPartnerNameString:)
.
+/// Example
+/// \code
+/// KVATracker.shared.start(withAppGUIDString: "_YOUR_KOCHAVA_APP_GUID_")
+///
+/// \endcode\param appGUIDString A Kochava app GUID.
+///
+- (void)startWithAppGUIDString:(NSString * _Nonnull)appGUIDString;
+/// Start the tracker with a partnerNameString.
+/// You may start a tracker with either an appGUIDString or a partnerNameString. Most commonly this is done with an appGUIDString. See also func start(withAppGUIDString:)
.
+/// Examples
+/// \code
+/// KVATracker.shared.start(withPartnerNameString: "_YOUR_KOCHAVA_PARTNER_NAME_")
+///
+/// \endcode\param partnerNameString A Kochava partner name.
+///
+- (void)startWithPartnerNameString:(NSString * _Nonnull)partnerNameString;
+/// Start the tracker.
+/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
+- (void)start;
+/// Start the tracker with advanced options.
+/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
+/// important:
+/// If you pass asyncBool as false, it becomes your responsibility to ensure that class KVASystem var shared func primarySystemStartDidExecuteOnMainThread() has been called prior to calling this method. The synchronous dispatch associated with this process can only be made after an asynchronous dispatch to ensure that no locks exist at the time, and so if you pass asyncBool as false it will be skipped here.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)startWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Stop the tracker.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+- (void)stop;
+/// Stop the tracker with advanced options.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)stopWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Invalidate the tracker.
+/// When using this method with the shared instance, you are guaranteed to be re-defaulted a new instance the next time it is referenced, and you may immediately move forward to re-configure and start it.
+- (void)invalidate;
+/// Invalidate the tracker with advanced options.
+/// See func invalidate()
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)invalidateWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Return a description of the instance.
+@property (nonatomic, readonly, copy) NSString * _Nonnull description;
+/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
+@property (nonatomic, readonly, strong) KVAAdNetwork * _Nonnull adNetwork;
+/// A feature which may be used to limit advertising tracking from the level of the application (or host).
+@property (nonatomic, readonly, strong) KVAAppLimitAdTracking * _Nonnull appLimitAdTracking;
+/// A feature which interfaces with Apple’s App Tracking Transparency system.
+@property (nonatomic, readonly, strong) KVAAppTrackingTransparency * _Nonnull appTrackingTransparency;
+/// A feature which provides attribution information related to the install.
+@property (nonatomic, readonly, strong) KVAAttribution * _Nonnull attribution;
+/// A feature which is responsible for controlling and updating the configuration of the tracker.
+/// This is sometimes referred to by the name of the backing service which provides the configuration, kvinit.
+@property (nonatomic, readonly, strong) KVATrackerConfig * _Nonnull config;
+/// A feature which is responsible for custom identifiers.
+/// Register a custom identifier by calling class KVACustomIdentifiers
func KVACustomIdentifiers/register(name:identifier:)
.
+@property (nonatomic, readonly, strong) KVACustomIdentifiers * _Nonnull customIdentifiers;
+/// A feature which measures deeplink activity.
+/// Create and process a basic deeplink (which is a wrapper for Apple’s url) by calling class KVADeeplink
func KVADeeplink/process(url:closure_didComplete:)
.
+@property (nonatomic, readonly, strong) KVADeeplinks * _Nonnull deeplinks;
+/// A feature which is responsible for the identification of a device.
+/// The managed id is referred to as the Kochava Device Id. Get the Kochava Device Id by getting class KVADeviceId
var KVADeviceId/string
.
+@property (nonatomic, readonly, strong) KVADeviceId * _Nonnull deviceId;
+/// A feature which encapsulates all of the general aspects of a tracker not belonging to any other encapsulated features.
+@property (nonatomic, readonly, strong) KVATrackerGeneral * _Nonnull general;
+/// A feature which is responsible for linking identities.
+/// Register an identity link by calling class KVAIdentityLink
func KVAIdentityLink/register(name:identifier:)
.
+@property (nonatomic, readonly, strong) KVAIdentityLink * _Nonnull identityLink;
+/// A feature which provides information about the install.
+/// The install is automatically sent to Kochava’s servers after starting the tracker, and after the retrieval of the tracker’s configuration in feature var config
.
+@property (nonatomic, readonly, strong) KVAInstall * _Nonnull install;
+/// A feature which provides networking support.
+/// The networking instance manages the exchange of data between the client and various server(s), along with the associated tasks, network transactions, and adapters. See class KVANetworking in module KochavaCore.
+@property (nonatomic, readonly, strong) KVANetworking * _Nonnull networking;
+/// A feature which provides for the measurement of push notifications.
+/// Create and register a push notifications token (which is a wrapper for Apple’s device token data) by calling class KVAPushNotificationsToken
func KVAPushNotificationsToken/register(data:)
.
+@property (nonatomic, readonly, strong) KVAPushNotifications * _Nonnull pushNotifications;
+/// A boolean which indicates if you want to limit ad tracking at the application level. This is a convenience variable which is fully equivalent to, and interchangeable with, appLimitAdTracking
.KVAAppLimitAdTracking/bool
.
+/// This feature is related to the Limit Ad Tracking feature which is typically found on an Apple device under Settings, Privacy, Advertising. In the same way that you can limit ad tracking through that setting, this feature provides a second and independent means for the host app to limit ad tracking by asking the user directly. A value of false from either this feature or Apple’s will result in the limiting of ad tracking.
+@property (nonatomic) BOOL appLimitAdTrackingBool SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.", "appLimitAdTracking.bool");
+/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install (convenience). This is a convenience variable which is fully equivalent to, and interchangeable with, deviceId
.KVADeviceId/string
.
+@property (nonatomic, readonly, copy) NSString * _Nullable deviceIdString SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use var deviceId.string instead.", "deviceId.string");
+/// A feature which is responsible for privacy, including intelligent consent. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.privacy.
+/// Privacy profiles are automatically registered from the server. Alternatively create and register a privacy profile locally by calling class KVAPrivacyProfile func KVAPrivacyProfile/register(name:payloadKeyStringArray:). Enable (or explicitly disable) a profile by calling class KVAPrivacy func KVAPrivacy/setEnabledBool(forProfileNameString:enabledBool:).
+@property (nonatomic, readonly, strong) KVAPrivacy * _Nonnull privacy;
+/// A boolean which when true causes the instance to sleep. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.sleepBool.
+/// The default is false. When set to true, this causes tasks to effectively be suspended until this condition is lifted. While this is set to true, tasks are not lost per-say; however, if a task may have otherwise occurred multiple times, it may be represented only once once the condition is lifted.
+@property (nonatomic) BOOL sleepBool;
+@property (nonatomic, readonly, strong) id _Nullable deeplinksProcessor;
+@property (nonatomic, readonly, strong) id _Nonnull eventSender;
+@property (nonatomic, readonly, strong) id _Nonnull privacyProfileRegistrar;
+@property (nonatomic, readonly, strong) id _Nonnull pushNotificationsTokenRegistrar;
+/// A string used as a storage identifier for the shared instance.
+/// This is used to further qualify where in persistent storage the information for this instance is stored. This property should not be used except in very specific circumstances. Please contact your client success representative if you are interested in using this. You would set this value to a short unique string consisting of regular alphanumeric characters.
+/// Following deployment with a given storage identifier this should never be changed except to represent an entirely new integration.
+/// If used, it is imperative that this value be consistently set prior to accessing the shared instance for the first time. You must make accommodations to set this as early as possible, where it would be prior to any access to var shared
throughout all of your code.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdentifier;)
++ (NSString * _Nullable)sharedStorageIdentifier SWIFT_WARN_UNUSED_RESULT;
++ (void)setSharedStorageIdentifier:(NSString * _Nullable)sharedStorageIdentifier;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdString SWIFT_DEPRECATED_MSG("Use sharedStorageIdentifier instead.", "sharedStorageIdentifier");)
++ (NSString * _Nullable)sharedStorageIdString SWIFT_WARN_UNUSED_RESULT;
++ (void)setSharedStorageIdString:(NSString * _Nullable)sharedStorageIdString;
+/// A boolean indicating whether or not the instance has been started.
+@property (nonatomic, readonly) BOOL startedBool;
+@end
+
+
+@interface KVATracker (SWIFT_EXTENSION(KochavaTracker))
+@end
+
+
+/// A feature which is responsible for controlling and updating the configuration of the tracker.
+SWIFT_CLASS_NAMED("KVATrackerConfig")
+@interface KVATrackerConfig : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Get the config dictionary with a completion handler.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
+///
+- (void)retrieveWithClosure_didComplete:(void (^ _Nonnull)(KVATrackerConfig * _Nonnull))closure_didComplete;
+/// A closure which is called when attribution is retrieved.
+@property (nonatomic, copy) void (^ _Nullable closure_didComplete)(KVATrackerConfig * _Nonnull);
+@property (nonatomic, readonly) BOOL consentGDPRAppliesBool;
+/// A boolean indicating if the configuration has been collected from the server at least one time.
+@property (nonatomic, readonly) BOOL collectedBool;
+@end
+
+
+/// A feature which is responsible for the collection of datapoints.
+SWIFT_CLASS_NAMED("KVATrackerDatapoints")
+@interface KVATrackerDatapoints : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+
+/// A feature which encapsulates all of the general aspects of a tracker not belonging to any other encapsulated features.
+SWIFT_CLASS_NAMED("KVATrackerGeneral")
+@interface KVATrackerGeneral : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+
+/// A feature which is responsible for tracker-specific logging activities.
+/// You can set the KVALog.shared.level to control what level of log messages are printed, as well as configure various other options through module KochavaCore class KVALog.
+SWIFT_CLASS_NAMED("KVATrackerLogging")
+@interface KVATrackerLogging : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+@class KVAProduct;
+
+/// A class which defines the tracker product.
+/// A product in this context generally refers to the result of a build.
+/// note:
+/// This is currently overridden to be a subclass of NSObject rather than KVAProduct so that it can be represented in Objective-C. If you use KVAProduct it will still build, but the automatic module registration will fail to locate the class. You can see early evidence of the problem if you also make the shared property be of the class type, where the compiler will say that it cannot use @objc because it cannot be expressed in Objective-C. This is apparently a problem that Swift has providing Objective-C compatibility to Swift classes which subclass other Swift classes across modules. For example, KVACoreProduct does not have this problem, presumably because it’s in the same module as KVAProduct. In order to convert this class to subclass KVAProduct, or to subsequently allow shared to be of the class’ type, a means of registering/loading the class as a Swift-only class would be required. More importantly, however, we’d need to give up public Objective-C support. Since that doesn’t seem possible, the only alternative would be that Apple fixes this issue and provides the necessary support, assuming that’s possible.
+SWIFT_CLASS_NAMED("KVATrackerProduct")
+@interface KVATrackerProduct : NSObject
+/// The singleton shared instance.
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAProduct * _Nonnull shared;)
++ (KVAProduct * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+
+/// Defines the parameters for the tracker product.
+SWIFT_CLASS("_TtC14KochavaTracker23KVATrackerProductParams")
+@interface KVATrackerProductParams : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+
+/// A feature which updates the server when there are changes to tracked components.
+SWIFT_CLASS_NAMED("KVATrackerUpdates")
+@interface KVATrackerUpdates : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+@end
+
+#endif
+#if defined(__cplusplus)
+#endif
+#if __has_attribute(external_source_symbol)
+# pragma clang attribute pop
+#endif
+#pragma clang diagnostic pop
+#endif
+
+#else
+#error unsupported Swift architecture
+#endif
diff --git a/KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KochavaTracker.h b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KochavaTracker.h
similarity index 92%
rename from KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KochavaTracker.h
rename to KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KochavaTracker.h
index d12d707..c932f3a 100644
--- a/KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KochavaTracker.h
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Headers/KochavaTracker.h
@@ -3,7 +3,7 @@
// KochavaTracker
//
// Created by John Bushnell on 10/20/17.
-// Copyright © 2013 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2013 - 2023 Kochava, Inc. All rights reserved.
//
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Info.plist b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Info.plist
similarity index 78%
rename from KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Info.plist
rename to KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Info.plist
index ca402ca..35b6244 100644
--- a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Info.plist
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 6.1.1
+ 7.0.0
CFBundleSupportedPlatforms
iPhoneOS
@@ -27,27 +27,30 @@
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
- 19E239
+ 20B71
DTPlatformName
iphoneos
DTPlatformVersion
- 15.4
+ 16.1
DTSDKBuild
- 19E239
+ 20B71
DTSDKName
- iphoneos15.4
+ iphoneos16.1
DTXcode
- 1331
+ 1410
DTXcodeBuild
- 13E500a
+ 14B47b
KVABuildDateString
- 2022-10-31T11:37:45-0700
+ 2023-03-08T21:07:46-0800
MinimumOSVersion
- 10.3
+ 12.4
UIDeviceFamily
1
- 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
diff --git a/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/KochavaTracker b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/KochavaTracker
new file mode 100755
index 0000000..e951928
Binary files /dev/null and b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/KochavaTracker differ
diff --git a/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.abi.json b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.abi.json
new file mode 100644
index 0000000..177e338
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.abi.json
@@ -0,0 +1,49366 @@
+{
+ "ABIRoot": {
+ "kind": "Root",
+ "name": "TopLevel",
+ "printedName": "TopLevel",
+ "children": [
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventType",
+ "printedName": "KVAEventType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "achievement",
+ "printedName": "achievement",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)achievement",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11achievementACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)achievement",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11achievementACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adClick",
+ "printedName": "adClick",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)adClick",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC7adClickACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)adClick",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC7adClickACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "addToCart",
+ "printedName": "addToCart",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)addToCart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9addToCartACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)addToCart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9addToCartACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "addToWishList",
+ "printedName": "addToWishList",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)addToWishList",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13addToWishListACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)addToWishList",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13addToWishListACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adView",
+ "printedName": "adView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)adView",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6adViewACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)adView",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6adViewACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "checkoutStart",
+ "printedName": "checkoutStart",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)checkoutStart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13checkoutStartACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)checkoutStart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13checkoutStartACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consentGranted",
+ "printedName": "consentGranted",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)consentGranted",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC14consentGrantedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)consentGranted",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC14consentGrantedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "custom",
+ "printedName": "custom",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)custom",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6customACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)custom",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6customACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplink",
+ "printedName": "deeplink",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)deeplink",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8deeplinkACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)deeplink",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8deeplinkACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "levelComplete",
+ "printedName": "levelComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)levelComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13levelCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)levelComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13levelCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "purchase",
+ "printedName": "purchase",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)purchase",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8purchaseACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)purchase",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8purchaseACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushOpened",
+ "printedName": "pushOpened",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)pushOpened",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10pushOpenedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)pushOpened",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10pushOpenedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushReceived",
+ "printedName": "pushReceived",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)pushReceived",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC12pushReceivedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)pushReceived",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC12pushReceivedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rating",
+ "printedName": "rating",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)rating",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6ratingACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)rating",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6ratingACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "registrationComplete",
+ "printedName": "registrationComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)registrationComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC20registrationCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)registrationComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC20registrationCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "search",
+ "printedName": "search",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)search",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6searchACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)search",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6searchACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startTrial",
+ "printedName": "startTrial",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)startTrial",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10startTrialACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)startTrial",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10startTrialACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "subscribe",
+ "printedName": "subscribe",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)subscribe",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9subscribeACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)subscribe",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9subscribeACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tutorialComplete",
+ "printedName": "tutorialComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)tutorialComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC16tutorialCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)tutorialComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC16tutorialCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "view",
+ "printedName": "view",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)view",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC4viewACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)view",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC4viewACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAEventTypeC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAEventTypeC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(py)description",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)description",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nameString",
+ "printedName": "nameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(py)nameString",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10nameStringSSvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)nameString",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10nameStringSSvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)init",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEventType",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppTrackingTransparency",
+ "printedName": "AppTrackingTransparency",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEvent",
+ "printedName": "KVAEvent",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)init",
+ "mangledName": "$s14KochavaTracker8KVAEventCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Required",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)initWithType:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4typeAcA0C4TypeC_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "event",
+ "printedName": "event(withType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(cm)eventWithType:",
+ "mangledName": "$s14KochavaTracker8KVAEventC5event8withTypeACXDAA0cF0C_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "eventWithType:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(typeNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)initWithTypeNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14typeNameStringACSS_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithTypeNameString:",
+ "declAttributes": [
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "event",
+ "printedName": "event(withTypeNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(cm)eventWithTypeNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC5event18withTypeNameStringACXDSS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "eventWithTypeNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker8KVAEventC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker8KVAEventC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)description",
+ "mangledName": "$s14KochavaTracker8KVAEventC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)description",
+ "mangledName": "$s14KochavaTracker8KVAEventC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC7executeyyF",
+ "mangledName": "$s14KochavaTracker8KVAEventC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)send",
+ "mangledName": "$s14KochavaTracker8KVAEventC4sendyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendWithSenderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4send11senderArrayySayAA0C14SenderProvider_pGSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "sendWithSenderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(withSenderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC4send15withSenderArrayySayAA0cF8Provider_pGSg_tF",
+ "mangledName": "$s14KochavaTracker8KVAEventC4send15withSenderArrayySayAA0cF8Provider_pGSg_tF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "NonObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "eventNameString",
+ "printedName": "eventNameString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)eventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15eventNameStringSSyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "valueObject",
+ "printedName": "valueObject(forPropertyIdentifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)valueObjectForPropertyIdentifier:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11valueObject21forPropertyIdentifieryXlSgSSSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "valueObjectForPropertyIdentifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "subURLIdString",
+ "printedName": "subURLIdString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)subURLIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14subURLIdStringSSSgyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "eventType",
+ "printedName": "eventType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)eventType",
+ "mangledName": "$s14KochavaTracker8KVAEventC9eventTypeAA0cE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)eventType",
+ "mangledName": "$s14KochavaTracker8KVAEventC9eventTypeAA0cE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)networking",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)networking",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sendAsyncBool",
+ "printedName": "sendAsyncBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sendAsyncBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendAsyncBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSendAsyncBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13sendAsyncBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sendLogMessagePrintBool",
+ "printedName": "sendLogMessagePrintBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sendLogMessagePrintBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendLogMessagePrintBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSendLogMessagePrintBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "serviceLocallyBool",
+ "printedName": "serviceLocallyBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)serviceLocallyBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)serviceLocallyBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setServiceLocallyBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18serviceLocallyBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "actionString",
+ "printedName": "actionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)actionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)actionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setActionString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12actionStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adCampaignIdString",
+ "printedName": "adCampaignIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adCampaignIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adCampaignIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdCampaignIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adCampaignNameString",
+ "printedName": "adCampaignNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adCampaignNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adCampaignNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdCampaignNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adDeviceTypeString",
+ "printedName": "adDeviceTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adDeviceTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adDeviceTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdDeviceTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adGroupIdString",
+ "printedName": "adGroupIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adGroupIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adGroupIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdGroupIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15adGroupIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adGroupNameString",
+ "printedName": "adGroupNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adGroupNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adGroupNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdGroupNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17adGroupNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adMediationNameString",
+ "printedName": "adMediationNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adMediationNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adMediationNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdMediationNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21adMediationNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adNetworkNameString",
+ "printedName": "adNetworkNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adNetworkNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adNetworkNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdNetworkNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adPlacementString",
+ "printedName": "adPlacementString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adPlacementString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adPlacementString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdPlacementString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17adPlacementStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adSizeString",
+ "printedName": "adSizeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adSizeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adSizeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdSizeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12adSizeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adTypeString",
+ "printedName": "adTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12adTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appleWatchBool",
+ "printedName": "appleWatchBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appleWatchBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appleWatchBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppleWatchBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14appleWatchBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appleWatchIdString",
+ "printedName": "appleWatchIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appleWatchIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appleWatchIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppleWatchIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appStoreReceiptBase64EncodedString",
+ "printedName": "appStoreReceiptBase64EncodedString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appStoreReceiptBase64EncodedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appStoreReceiptBase64EncodedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppStoreReceiptBase64EncodedString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "backgroundBoolNumber",
+ "printedName": "backgroundBoolNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)backgroundBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)backgroundBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setBackgroundBoolNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "checkoutAsGuestString",
+ "printedName": "checkoutAsGuestString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)checkoutAsGuestString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)checkoutAsGuestString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCheckoutAsGuestString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "completedBoolNumber",
+ "printedName": "completedBoolNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)completedBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)completedBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCompletedBoolNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consent",
+ "printedName": "consent",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)consent",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)consent",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setConsent:",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "contentIdString",
+ "printedName": "contentIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)contentIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)contentIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setContentIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15contentIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "contentTypeString",
+ "printedName": "contentTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)contentTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)contentTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setContentTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17contentTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currencyString",
+ "printedName": "currencyString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)currencyString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)currencyString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCurrencyString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14currencyStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customEventName",
+ "printedName": "customEventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)customEventName",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)customEventName",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCustomEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15customEventNameSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customEventNameString",
+ "printedName": "customEventNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)customEventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "Available"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)customEventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCustomEventNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21customEventNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "date",
+ "printedName": "date",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)date",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)date",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC4date10Foundation4DateVSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dateString",
+ "printedName": "dateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)dateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)dateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10dateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "descriptionString",
+ "printedName": "descriptionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)descriptionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)descriptionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDescriptionString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17descriptionStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "destinationString",
+ "printedName": "destinationString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)destinationString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)destinationString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDestinationString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17destinationStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "durationTimeIntervalNumber",
+ "printedName": "durationTimeIntervalNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)durationTimeIntervalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)durationTimeIntervalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDurationTimeIntervalNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "endDate",
+ "printedName": "endDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)endDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)endDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setEndDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "endDateString",
+ "printedName": "endDateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)endDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)endDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setEndDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13endDateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "infoDictionary",
+ "printedName": "infoDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)infoDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)infoDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setInfoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "infoString",
+ "printedName": "infoString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)infoString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)infoString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setInfoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10infoStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemAddedFromString",
+ "printedName": "itemAddedFromString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)itemAddedFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)itemAddedFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setItemAddedFromString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "levelString",
+ "printedName": "levelString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)levelString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)levelString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setLevelString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC11levelStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "maxRatingValueDoubleNumber",
+ "printedName": "maxRatingValueDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)maxRatingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)maxRatingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setMaxRatingValueDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nameString",
+ "printedName": "nameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)nameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)nameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10nameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "orderIdString",
+ "printedName": "orderIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)orderIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)orderIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setOrderIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13orderIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originString",
+ "printedName": "originString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)originString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)originString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setOriginString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12originStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "payloadDictionary",
+ "printedName": "payloadDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)payloadDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)payloadDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPayloadDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "priceDecimalNumber",
+ "printedName": "priceDecimalNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)priceDecimalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)priceDecimalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPriceDecimalNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "priceDoubleNumber",
+ "printedName": "priceDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)priceDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)priceDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPriceDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "quantityDoubleNumber",
+ "printedName": "quantityDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)quantityDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)quantityDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setQuantityDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "ratingValueDoubleNumber",
+ "printedName": "ratingValueDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)ratingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)ratingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setRatingValueDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "receiptIdString",
+ "printedName": "receiptIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)receiptIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)receiptIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setReceiptIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15receiptIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "referralFromString",
+ "printedName": "referralFromString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)referralFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)referralFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setReferralFromString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18referralFromStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "registrationMethodString",
+ "printedName": "registrationMethodString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)registrationMethodString",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)registrationMethodString",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setRegistrationMethodString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC24registrationMethodStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "resultsString",
+ "printedName": "resultsString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)resultsString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)resultsString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setResultsString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13resultsStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "scoreString",
+ "printedName": "scoreString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)scoreString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)scoreString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setScoreString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC11scoreStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "searchTermString",
+ "printedName": "searchTermString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)searchTermString",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)searchTermString",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSearchTermString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC16searchTermStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sourceString",
+ "printedName": "sourceString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sourceString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sourceString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSourceString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12sourceStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialXDoubleNumber",
+ "printedName": "spatialXDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialXDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialXDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialXDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialYDoubleNumber",
+ "printedName": "spatialYDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialYDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialYDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialYDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialZDoubleNumber",
+ "printedName": "spatialZDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialZDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialZDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialZDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startDate",
+ "printedName": "startDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)startDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)startDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setStartDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startDateString",
+ "printedName": "startDateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)startDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)startDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setStartDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15startDateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "successString",
+ "printedName": "successString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)successString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)successString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSuccessString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13successStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userIdString",
+ "printedName": "userIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)userIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)userIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUserIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12userIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uriString",
+ "printedName": "uriString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)uriString",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)uriString",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUriString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC9uriStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userNameString",
+ "printedName": "userNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)userNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)userNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUserNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14userNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "validatedString",
+ "printedName": "validatedString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)validatedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)validatedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setValidatedString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15validatedStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventNameySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName11senderArrayySS_SayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString11senderArrayySS_SayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName14infoDictionaryySS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString14infoDictionaryySS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoDictionary:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoDictionary:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName14infoDictionary11senderArrayySS_SDys11AnyHashableVypGSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoDictionary:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoDictionary:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoDictionary:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString14infoDictionary11senderArrayySS_SDys11AnyHashableVypGSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoDictionary:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName10infoStringySS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString04infoH0ySS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName10infoString11senderArrayySS_SSSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString04infoH011senderArrayySS_SSSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventNameACSS_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameStringACXDSS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventName14infoDictionaryACSS_SDys11AnyHashableVypGSgtcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:infoDictionary:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameString14infoDictionaryACXDSS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventName10infoStringACSS_SSSgtcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:infoString:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameString04infoH0ACXDSS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent",
+ "mangledName": "$s14KochavaTracker8KVAEventC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEvent",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetTransactionServiceLocallyBoolPropertyProvider",
+ "printedName": "KVANetTransactionServiceLocallyBoolPropertyProvider",
+ "usr": "s:11KochavaCore51KVANetTransactionServiceLocallyBoolPropertyProviderP",
+ "mangledName": "$s11KochavaCore51KVANetTransactionServiceLocallyBoolPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetTransactionSubURLIdStringMethodProvider",
+ "printedName": "KVANetTransactionSubURLIdStringMethodProvider",
+ "usr": "s:11KochavaCore45KVANetTransactionSubURLIdStringMethodProviderP",
+ "mangledName": "$s11KochavaCore45KVANetTransactionSubURLIdStringMethodProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "JavaScriptCore",
+ "printedName": "JavaScriptCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetwork",
+ "printedName": "KVAAdNetwork",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC5startyyF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "conversion",
+ "printedName": "conversion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)conversion",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)conversion",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setConversion:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didRegisterAppForAttribution",
+ "printedName": "closure_didRegisterAppForAttribution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)closure_didRegisterAppForAttribution",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)closure_didRegisterAppForAttribution",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setClosure_didRegisterAppForAttribution:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didRegisterAppForAttributionBlock",
+ "printedName": "didRegisterAppForAttributionBlock",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)didRegisterAppForAttributionBlock",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)didRegisterAppForAttributionBlock",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setDidRegisterAppForAttributionBlock:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetwork",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AdServices",
+ "printedName": "AdServices",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KVAAppLimitAdTracking",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bool",
+ "printedName": "bool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(py)boolean",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "boolean",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(im)boolean",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(im)setBoolean:",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvM",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAppLimitAdTracking",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AppTrackingTransparency",
+ "printedName": "AppTrackingTransparency",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KVAAppTrackingTransparency",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC5startyyF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "authorizationDidComplete",
+ "printedName": "authorizationDidComplete(status:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "AuthorizationStatus",
+ "printedName": "AppTrackingTransparency.ATTrackingManager.AuthorizationStatus",
+ "usr": "c:@E@ATTrackingManagerAuthorizationStatus"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)authorizationDidCompleteWithStatus:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC24authorizationDidComplete6statusySo36ATTrackingManagerAuthorizationStatusV_tF",
+ "moduleName": "KochavaTracker",
+ "intro_Macosx": "11.0",
+ "intro_iOS": "14.0",
+ "intro_tvOS": "14.0",
+ "objc_name": "authorizationDidCompleteWithStatus:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "Available",
+ "Available",
+ "Available",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "authorizationDidComplete",
+ "printedName": "authorizationDidComplete(withStatus:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "AuthorizationStatus",
+ "printedName": "AppTrackingTransparency.ATTrackingManager.AuthorizationStatus",
+ "usr": "c:@E@ATTrackingManagerAuthorizationStatus"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC24authorizationDidComplete10withStatusySo030ATTrackingManagerAuthorizationJ0V_tF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC24authorizationDidComplete10withStatusySo030ATTrackingManagerAuthorizationJ0V_tF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "intro_Macosx": "11.0",
+ "intro_iOS": "14.0",
+ "intro_tvOS": "14.0",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "NonObjC",
+ "Available",
+ "Available",
+ "Available",
+ "Available",
+ "Available",
+ "Available"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "autoRequestTrackingAuthorizationBool",
+ "printedName": "autoRequestTrackingAuthorizationBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)autoRequestTrackingAuthorizationBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)autoRequestTrackingAuthorizationBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setAutoRequestTrackingAuthorizationBool:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "authorizationStatusWaitTimeInterval",
+ "printedName": "authorizationStatusWaitTimeInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)authorizationStatusWaitTimeInterval",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)authorizationStatusWaitTimeInterval",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setAuthorizationStatusWaitTimeInterval:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "enabledBool",
+ "printedName": "enabledBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)enabledBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)enabledBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setEnabledBool:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "authorizationStatusString",
+ "printedName": "authorizationStatusString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)authorizationStatusString",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC25authorizationStatusStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)authorizationStatusString",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC25authorizationStatusStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAppTrackingTransparency",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAttribution",
+ "printedName": "KVAAttribution",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC5startyyF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "retrieveResult",
+ "printedName": "retrieveResult(closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)retrieveResultWithCompletionHandler:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC14retrieveResult19closure_didCompleteyyAA0cE0Cc_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "retrieveResultWithCompletionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "result",
+ "printedName": "result",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)result",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6resultAA0C6ResultCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)result",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6resultAA0C6ResultCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didRetrieveResult",
+ "printedName": "closure_didRetrieveResult",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)closure_didRetrieveResult",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)closure_didRetrieveResult",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)setClosure_didRetrieveResult:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvM",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "retrieveResultBool",
+ "printedName": "retrieveResultBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)retrieveResultBool",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)retrieveResultBool",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)setRetrieveResultBool:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvM",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAttribution",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAttributionResult",
+ "printedName": "KVAAttributionResult",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "attributedBool",
+ "printedName": "attributedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)attributedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC14attributedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)attributedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC14attributedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "firstInstallBool",
+ "printedName": "firstInstallBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)firstInstallBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC16firstInstallBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)firstInstallBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC16firstInstallBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawDictionary",
+ "printedName": "rawDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)rawDictionary",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13rawDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)rawDictionary",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13rawDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "retrievedBool",
+ "printedName": "retrievedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)retrievedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13retrievedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)retrievedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13retrievedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)init",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAttributionResult",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KVACustomIdentifiers",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers(im)registerWithName:identifier:",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8register4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withNameString:identifierString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers(im)registerWithNameString:identifierString:",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8register14withNameString010identifierH0ySS_SStF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "objc_name": "registerWithNameString:identifierString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVACustomIdentifiers",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplink",
+ "printedName": "KVADeeplink",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19closure_didCompletey10Foundation3URLVSg_yACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL17completionHandlery10Foundation0F0VSg_yACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19timeoutTimeInterval19closure_didCompletey10Foundation3URLVSg_SdyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:timeoutTimeInterval:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL19timeoutTimeInterval17completionHandlery10Foundation0F0VSg_SdyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:processor:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:processor:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url9processor19closure_didCompletey10Foundation3URLVSg_AA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:processor:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:processor:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:processor:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL9processor17completionHandlery10Foundation0F0VSg_AA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:processor:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:timeoutTimeInterval:processor:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:processor:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19timeoutTimeInterval9processor19closure_didCompletey10Foundation3URLVSg_SdAA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:processor:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:timeoutTimeInterval:processor:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:processor:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL19timeoutTimeInterval9processor17completionHandlery10Foundation0F0VSg_SdAA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:processor:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeeplinkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isEqual",
+ "printedName": "isEqual(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)isEqual:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7isEqualySbypSgF",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "isEqual:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7executeyyF",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "urlString",
+ "printedName": "urlString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)urlString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)urlString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setUrlString:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC9urlStringSSSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)networking",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)networking",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "destinationString",
+ "printedName": "destinationString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)destinationString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)destinationString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setDestinationString:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC17destinationStringSSSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawDictionary",
+ "printedName": "rawDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)rawDictionary",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)rawDictionary",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setRawDictionary:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeeplink",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KVADeeplinksProcessor",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(deeplink:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor(im)processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP7process8deeplink19timeoutTimeInterval19closure_didCompleteyAA11KVADeeplinkC_SdyAIcSgtF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVADeeplinksProcessor>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KVADeeplinksProcessorProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "deeplinksProcessor",
+ "printedName": "deeplinksProcessor",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider(py)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP09deeplinksD0AA0cD0_pSgvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider(im)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP09deeplinksD0AA0cD0_pSgvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVADeeplinksProcessorProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinks",
+ "printedName": "KVADeeplinks",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "copy",
+ "printedName": "copy(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "ObjectiveC.NSZone?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSZone",
+ "printedName": "ObjectiveC.NSZone",
+ "usr": "s:10ObjectiveC6NSZoneV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)copyWithZone:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC4copy4withyp10ObjectiveC6NSZoneVSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "copyWithZone:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "augmentDeferredPrefetch",
+ "printedName": "augmentDeferredPrefetch(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)augmentDeferredPrefetchWithName:identifier:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC23augmentDeferredPrefetch4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "augmentDeferredPrefetchWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(deeplink:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7process8deeplink19timeoutTimeInterval19closure_didCompleteyAA11KVADeeplinkC_SdyAIcSgtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeeplinks",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeviceId",
+ "printedName": "KVADeviceId",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "string",
+ "printedName": "string",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId(py)string",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6stringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId(im)string",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6stringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeviceId",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEvents",
+ "printedName": "KVAEvents",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker9KVAEventsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker9KVAEventsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(event:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents(im)sendEvent:",
+ "mangledName": "$s14KochavaTracker9KVAEventsC4send5eventyAA8KVAEventC_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "sendEvent:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents",
+ "mangledName": "$s14KochavaTracker9KVAEventsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEvents",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAEventSender",
+ "printedName": "KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KVAAdNetworkConversion",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(cm)kva_from:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "kva_from:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC5startyyF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didUpdatePostbackValue",
+ "printedName": "closure_didUpdatePostbackValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)closure_didUpdatePostbackValue",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)closure_didUpdatePostbackValue",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)setClosure_didUpdatePostbackValue:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvM",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didUpdateValueBlock",
+ "printedName": "didUpdateValueBlock",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)didUpdateValueBlock",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)didUpdateValueBlock",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)setDidUpdateValueBlock:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvM",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "result",
+ "printedName": "result",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)result",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6resultAA0cdE6ResultCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)result",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6resultAA0cdE6ResultCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetworkConversion",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAIdentityLink",
+ "printedName": "KVAIdentityLink",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink(im)registerWithName:identifier:",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8register4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withNameString:identifierString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink(im)registerWithNameString:identifierString:",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8register14withNameString010identifierH0ySS_SStF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "objc_name": "registerWithNameString:identifierString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAIdentityLink",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UserNotifications",
+ "printedName": "UserNotifications",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAInstall",
+ "printedName": "KVAInstall",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker10KVAInstallC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker10KVAInstallC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC5startyyF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didStartFirstDate",
+ "printedName": "didStartFirstDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall(py)didStartFirstDate",
+ "mangledName": "$s14KochavaTracker10KVAInstallC17didStartFirstDate10Foundation0G0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall(im)didStartFirstDate",
+ "mangledName": "$s14KochavaTracker10KVAInstallC17didStartFirstDate10Foundation0G0VSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall",
+ "mangledName": "$s14KochavaTracker10KVAInstallC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAInstall",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "JavaScriptCore",
+ "printedName": "JavaScriptCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KVAAdNetworkConversionResult",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "copy",
+ "printedName": "copy(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "ObjectiveC.NSZone?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSZone",
+ "printedName": "ObjectiveC.NSZone",
+ "usr": "s:10ObjectiveC6NSZoneV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)copyWithZone:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC4copy4withyp10ObjectiveC6NSZoneVSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "copyWithZone:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(cm)kva_from:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "kva_from:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "valueInt",
+ "printedName": "valueInt()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)valueInt",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC8valueIntSiyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "coarseValue",
+ "printedName": "coarseValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)coarseValue",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11coarseValueSo04SKAdd6CoarseeH0aSgvp",
+ "moduleName": "KochavaTracker",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)coarseValue",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11coarseValueSo04SKAdd6CoarseeH0aSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "error",
+ "printedName": "error",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Error?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)error",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC5errors5Error_pSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Error?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)error",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC5errors5Error_pSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "modelString",
+ "printedName": "modelString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)modelString",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11modelStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)modelString",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11modelStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "translatedValueInt",
+ "printedName": "translatedValueInt",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvp",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvg",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "translatedValueIntNumber",
+ "printedName": "translatedValueIntNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)translatedValueIntNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC24translatedValueIntNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)translatedValueIntNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC24translatedValueIntNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawValueNumber",
+ "printedName": "rawValueNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)rawValueNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC14rawValueNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)rawValueNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC14rawValueNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetworkConversionResult",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UserNotifications",
+ "printedName": "UserNotifications",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotifications",
+ "printedName": "KVAPushNotifications",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC5startyyF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(token:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)registerToken:",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8register5tokenyAA0cD5TokenC_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerToken:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "enabledBool",
+ "printedName": "enabledBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(py)enabledBool",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)enabledBool",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)setEnabledBool:",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvM",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAPushNotifications",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerGeneral",
+ "printedName": "KVATrackerGeneral",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC5startyyF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "instanceCreatedDate",
+ "printedName": "instanceCreatedDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvp",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvg",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startSequenceDidCompleteNotificationName",
+ "printedName": "startSequenceDidCompleteNotificationName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Name",
+ "printedName": "Foundation.NSNotification.Name",
+ "usr": "c:@T@NSNotificationName"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avpZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Name",
+ "printedName": "Foundation.NSNotification.Name",
+ "usr": "c:@T@NSNotificationName"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avgZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerGeneral",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KVAPushNotificationsToken",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithData:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register4datay10Foundation4DataV_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithData:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withData:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register8withDatay10Foundation0H0V_tFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register8withDatay10Foundation0H0V_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(data:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithData:registrarArray:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register4data14registrarArrayy10Foundation4DataV_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithData:registrarArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withData:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register8withData14registrarArrayy10Foundation0H0V_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register8withData14registrarArrayy10Foundation0H0V_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(dataHexString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithDataHexString:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register13dataHexStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithDataHexString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withDataHexString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexStringySS_tFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(dataHexString:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithDataHexString:registrarArray:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register13dataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithDataHexString:registrarArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withDataHexString:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isEqual",
+ "printedName": "isEqual(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)isEqual:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7isEqualySbypSgF",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "isEqual:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7executeyyF",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)data",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC4data10Foundation4DataVSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)data",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC4data10Foundation4DataVSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "providedDate",
+ "printedName": "providedDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)providedDate",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC12providedDate10Foundation0G0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)providedDate",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC12providedDate10Foundation0G0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)networking",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)networking",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)init",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAPushNotificationsToken",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KVAPushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(token:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar(im)registerToken:",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP8register5tokenyAA0cdE0C_tF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAPushNotificationsTokenRegistrar>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "registerToken:",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KVAPushNotificationsTokenRegistrarProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "pushNotificationsTokenRegistrar",
+ "printedName": "pushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider(py)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP04pushdeF0AA0cdeF0_pvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider(im)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP04pushdeF0AA0cdeF0_pvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAPushNotificationsTokenRegistrarProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATracker",
+ "printedName": "KVATracker",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)shared",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6sharedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)shared",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6sharedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "shared_optional",
+ "printedName": "shared_optional",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVATracker?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)shared_optional",
+ "mangledName": "$s14KochavaTracker10KVATrackerC15shared_optionalACSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVATracker?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)shared_optional",
+ "mangledName": "$s14KochavaTracker10KVATrackerC15shared_optionalACSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedInstance",
+ "printedName": "sharedInstance",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedInstance",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14sharedInstanceyXlvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedInstance",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14sharedInstanceyXlvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)init",
+ "mangledName": "$s14KochavaTracker10KVATrackerCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Convenience",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(storageIdentifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)initWithStorageIdentifier:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17storageIdentifierACSSSg_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithStorageIdentifier:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "tracker",
+ "printedName": "tracker()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)tracker",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7trackerACXDyFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "tracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "tracker",
+ "printedName": "tracker(withStorageIdString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)trackerWithStorageIdString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7tracker19withStorageIdStringACXDSSSg_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "trackerWithStorageIdString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "configure",
+ "printedName": "configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)configureWith:context:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "configureWith:context:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker10KVATrackerC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(withAppGUIDString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithAppGUIDString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start17withAppGUIDStringySS_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithAppGUIDString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(withPartnerNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithPartnerNameString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start21withPartnerNameStringySS_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithPartnerNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)start",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stop",
+ "printedName": "stop()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)stop",
+ "mangledName": "$s14KochavaTracker10KVATrackerC4stopyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stop",
+ "printedName": "stop(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)stopWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC4stop19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "stopWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)invalidate",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)invalidateWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10invalidate19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "invalidateWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)description",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)description",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adNetwork",
+ "printedName": "adNetwork",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)adNetwork",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9adNetworkAA05KVAAdE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)adNetwork",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9adNetworkAA05KVAAdE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appLimitAdTracking",
+ "printedName": "appLimitAdTracking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KochavaTracker.KVAAppLimitAdTracking",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appLimitAdTracking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18appLimitAdTrackingAA06KVAAppefG0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KochavaTracker.KVAAppLimitAdTracking",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appLimitAdTracking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18appLimitAdTrackingAA06KVAAppefG0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appTrackingTransparency",
+ "printedName": "appTrackingTransparency",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KochavaTracker.KVAAppTrackingTransparency",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appTrackingTransparency",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23appTrackingTransparencyAA06KVAAppeF0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KochavaTracker.KVAAppTrackingTransparency",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appTrackingTransparency",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23appTrackingTransparencyAA06KVAAppeF0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "attribution",
+ "printedName": "attribution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)attribution",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11attributionAA14KVAAttributionCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)attribution",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11attributionAA14KVAAttributionCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "config",
+ "printedName": "config",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)config",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6configAA0C6ConfigCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)config",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6configAA0C6ConfigCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customIdentifiers",
+ "printedName": "customIdentifiers",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KochavaTracker.KVACustomIdentifiers",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)customIdentifiers",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17customIdentifiersAA09KVACustomE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KochavaTracker.KVACustomIdentifiers",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)customIdentifiers",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17customIdentifiersAA09KVACustomE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplinks",
+ "printedName": "deeplinks",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinks",
+ "printedName": "KochavaTracker.KVADeeplinks",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deeplinks",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9deeplinksAA12KVADeeplinksCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinks",
+ "printedName": "KochavaTracker.KVADeeplinks",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deeplinks",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9deeplinksAA12KVADeeplinksCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceId",
+ "printedName": "deviceId",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeviceId",
+ "printedName": "KochavaTracker.KVADeviceId",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deviceId",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8deviceIdAA09KVADeviceE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeviceId",
+ "printedName": "KochavaTracker.KVADeviceId",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deviceId",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8deviceIdAA09KVADeviceE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "events",
+ "printedName": "events",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvents",
+ "printedName": "KochavaTracker.KVAEvents",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvp",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvents",
+ "printedName": "KochavaTracker.KVAEvents",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvg",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "general",
+ "printedName": "general",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerGeneral",
+ "printedName": "KochavaTracker.KVATrackerGeneral",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)general",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7generalAA0C7GeneralCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerGeneral",
+ "printedName": "KochavaTracker.KVATrackerGeneral",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)general",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7generalAA0C7GeneralCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityLink",
+ "printedName": "identityLink",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAIdentityLink",
+ "printedName": "KochavaTracker.KVAIdentityLink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)identityLink",
+ "mangledName": "$s14KochavaTracker10KVATrackerC12identityLinkAA011KVAIdentityE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAIdentityLink",
+ "printedName": "KochavaTracker.KVAIdentityLink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)identityLink",
+ "mangledName": "$s14KochavaTracker10KVATrackerC12identityLinkAA011KVAIdentityE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "install",
+ "printedName": "install",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAInstall",
+ "printedName": "KochavaTracker.KVAInstall",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)install",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7installAA10KVAInstallCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAInstall",
+ "printedName": "KochavaTracker.KVAInstall",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)install",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7installAA10KVAInstallCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)networking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10networking0A4Core13KVANetworkingCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)networking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10networking0A4Core13KVANetworkingCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushNotifications",
+ "printedName": "pushNotifications",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotifications",
+ "printedName": "KochavaTracker.KVAPushNotifications",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)pushNotifications",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17pushNotificationsAA07KVAPushE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotifications",
+ "printedName": "KochavaTracker.KVAPushNotifications",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)pushNotifications",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17pushNotificationsAA07KVAPushE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appLimitAdTrackingBool",
+ "printedName": "appLimitAdTrackingBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appLimitAdTrackingBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appLimitAdTrackingBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)setAppLimitAdTrackingBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvM",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceIdString",
+ "printedName": "deviceIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deviceIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14deviceIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deviceIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14deviceIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "privacy",
+ "printedName": "privacy",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacy",
+ "printedName": "KochavaCore.KVAPrivacy",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAPrivacy"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)privacy",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7privacy0A4Core10KVAPrivacyCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacy",
+ "printedName": "KochavaCore.KVAPrivacy",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAPrivacy"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)privacy",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7privacy0A4Core10KVAPrivacyCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sleepBool",
+ "printedName": "sleepBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)sleepBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)sleepBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)setSleepBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC9sleepBoolSbvM",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplinksProcessor",
+ "printedName": "deeplinksProcessor",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18deeplinksProcessorAA012KVADeeplinksE0_pSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "deeplinksProcessor",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18deeplinksProcessorAA012KVADeeplinksE0_pSgvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "deeplinksProcessor",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "eventSender",
+ "printedName": "eventSender",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)eventSender",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11eventSenderAA08KVAEventE0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "eventSender",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)eventSender",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11eventSenderAA08KVAEventE0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "eventSender",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "privacyProfileRegistrar",
+ "printedName": "privacyProfileRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacyProfileRegistrar",
+ "printedName": "KochavaCore.KVAPrivacyProfileRegistrar",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)privacyProfileRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23privacyProfileRegistrar0A4Core010KVAPrivacyeF0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "privacyProfileRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacyProfileRegistrar",
+ "printedName": "KochavaCore.KVAPrivacyProfileRegistrar",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)privacyProfileRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23privacyProfileRegistrar0A4Core010KVAPrivacyeF0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "privacyProfileRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushNotificationsTokenRegistrar",
+ "printedName": "pushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC31pushNotificationsTokenRegistrarAA07KVAPushefG0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "pushNotificationsTokenRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC31pushNotificationsTokenRegistrarAA07KVAPushefG0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "pushNotificationsTokenRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedStorageIdentifier",
+ "printedName": "sharedStorageIdentifier",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedStorageIdentifier",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedStorageIdentifier",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)setSharedStorageIdentifier:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvsZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvMZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvMZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedStorageIdString",
+ "printedName": "sharedStorageIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedStorageIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedStorageIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)setSharedStorageIdString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvsZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvMZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvMZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startedBool",
+ "printedName": "startedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)startedBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11startedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startedBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11startedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker",
+ "mangledName": "$s14KochavaTracker10KVATrackerC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatableWithOptions",
+ "printedName": "KVAInvalidatableWithOptions",
+ "usr": "s:11KochavaCore27KVAInvalidatableWithOptionsP",
+ "mangledName": "$s11KochavaCore27KVAInvalidatableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPrivacyProfileRegistrarProvider",
+ "printedName": "KVAPrivacyProfileRegistrarProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrarProvider",
+ "mangledName": "$s11KochavaCore34KVAPrivacyProfileRegistrarProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVASharedPropertyProvider",
+ "printedName": "KVASharedPropertyProvider",
+ "usr": "s:11KochavaCore25KVASharedPropertyProviderP",
+ "mangledName": "$s11KochavaCore25KVASharedPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartableWithOptions",
+ "printedName": "KVAStartableWithOptions",
+ "usr": "s:11KochavaCore23KVAStartableWithOptionsP",
+ "mangledName": "$s11KochavaCore23KVAStartableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStoppable",
+ "printedName": "KVAStoppable",
+ "usr": "s:11KochavaCore12KVAStoppableP",
+ "mangledName": "$s11KochavaCore12KVAStoppableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStoppableWithOptions",
+ "printedName": "KVAStoppableWithOptions",
+ "usr": "s:11KochavaCore23KVAStoppableWithOptionsP",
+ "mangledName": "$s11KochavaCore23KVAStoppableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerConfig",
+ "printedName": "KVATrackerConfig",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC5startyyF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "retrieve",
+ "printedName": "retrieve(closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)retrieveWithClosure_didComplete:",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8retrieve19closure_didCompleteyyACc_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "retrieveWithClosure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didComplete",
+ "printedName": "closure_didComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)closure_didComplete",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)closure_didComplete",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)setClosure_didComplete:",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvM",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consentGDPRAppliesBool",
+ "printedName": "consentGDPRAppliesBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)consentGDPRAppliesBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC22consentGDPRAppliesBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)consentGDPRAppliesBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC22consentGDPRAppliesBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "collectedBool",
+ "printedName": "collectedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)collectedBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13collectedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)collectedBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13collectedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerConfig",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "AdSupport",
+ "printedName": "AdSupport",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "AVFoundation",
+ "printedName": "AVFoundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "CoreTelephony",
+ "printedName": "CoreTelephony",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "DeviceCheck",
+ "printedName": "DeviceCheck",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "SystemConfiguration",
+ "printedName": "SystemConfiguration",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "WebKit",
+ "printedName": "WebKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerDatapoints",
+ "printedName": "KVATrackerDatapoints",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC5startyyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleDisplayNameStringAdapter",
+ "printedName": "appMainBundleDisplayNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleIdentifierStringAdapter",
+ "printedName": "appMainBundleIdentifierStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleShortVersionStringAdapter",
+ "printedName": "appMainBundleShortVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleVersionStringAdapter",
+ "printedName": "appMainBundleVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appStoreReceiptDataAdapter",
+ "printedName": "appStoreReceiptDataAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "architectureStringAdapter",
+ "printedName": "architectureStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "batteryLevelPercentageIntAdapter",
+ "printedName": "batteryLevelPercentageIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "batteryStateStringAdapter",
+ "printedName": "batteryStateStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bootDateAdapter",
+ "printedName": "bootDateAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "carrierNameStringAdapter",
+ "printedName": "carrierNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "cellularTypeStringAdapter",
+ "printedName": "cellularTypeStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currentDateAdapter",
+ "printedName": "currentDateAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currentLocaleIdentifierStringAdapter",
+ "printedName": "currentLocaleIdentifierStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceLimitAdTrackingBoolAdapter",
+ "printedName": "deviceLimitAdTrackingBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "deviceLimitAdTrackingBool",
+ "printedName": "deviceLimitAdTrackingBool()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25deviceLimitAdTrackingBoolSbyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25deviceLimitAdTrackingBoolSbyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "deviceModelStringAdapter",
+ "printedName": "deviceModelStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceOrientationStringAdapter",
+ "printedName": "deviceOrientationStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceSystemNameStringAdapter",
+ "printedName": "deviceSystemNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "firstPreferredLanguageStringAdapter",
+ "printedName": "firstPreferredLanguageStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "hardwareMachineModelIdStringAdapter",
+ "printedName": "hardwareMachineModelIdStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "iabUSPrivacyStringAdapter",
+ "printedName": "iabUSPrivacyStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "idctDataAdapter",
+ "printedName": "idctDataAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "idfaString",
+ "printedName": "idfaString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC10idfaStringSSSgyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC10idfaStringSSSgyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "idfaStringAdapter",
+ "printedName": "idfaStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "idfvStringAdapter",
+ "printedName": "idfvStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "ipAddressStringAdapter",
+ "printedName": "ipAddressStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "localTimezoneNameStringAdapter",
+ "printedName": "localTimezoneNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenBrightnessNumberAdapter",
+ "printedName": "mainScreenBrightnessNumberAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenNativeBoundsHeightIntAdapter",
+ "printedName": "mainScreenNativeBoundsHeightIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenNativeBoundsWidthIntAdapter",
+ "printedName": "mainScreenNativeBoundsWidthIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "minimumOSVersionStringAdapter",
+ "printedName": "minimumOSVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networkConnectionTypeStringAdapter",
+ "printedName": "networkConnectionTypeStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "osGenuineBoolAdapter",
+ "printedName": "osGenuineBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "osVersionStringAdapter",
+ "printedName": "osVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "platformNameStringAdapter",
+ "printedName": "platformNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sdkGeneratedUserAgentStringAdapter",
+ "printedName": "sdkGeneratedUserAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userAgentStringAdapter",
+ "printedName": "userAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeNumberAdapter",
+ "printedName": "volumeNumberAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "vpnBoolAdapter",
+ "printedName": "vpnBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "webViewUserAgentStringAdapter",
+ "printedName": "webViewUserAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerDatapoints",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerDatapoints",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "DeviceCheck",
+ "printedName": "DeviceCheck",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerProduct",
+ "printedName": "KVATrackerProduct",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAProduct",
+ "printedName": "KochavaCore.KVAProduct",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAProduct"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(cpy)shared",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC6shared0A4Core10KVAProductCvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAProduct",
+ "printedName": "KochavaCore.KVAProduct",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAProduct"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(cm)shared",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC6shared0A4Core10KVAProductCvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedInstance",
+ "printedName": "sharedInstance",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvpZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvgZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerProduct",
+ "printedName": "KochavaTracker.KVATrackerProduct",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(im)init",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerProduct",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVASharedPropertyProvider",
+ "printedName": "KVASharedPropertyProvider",
+ "usr": "s:11KochavaCore25KVASharedPropertyProviderP",
+ "mangledName": "$s11KochavaCore25KVASharedPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventSender",
+ "printedName": "KVAEventSender",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(event:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender(im)sendEvent:",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP4send5eventyAA0C0C_tF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAEventSender>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "sendEvent:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KVAEventSenderProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "eventSender",
+ "printedName": "eventSender",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider(py)eventSender",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP05eventD0AA0cD0_pvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider(im)eventSender",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP05eventD0AA0cD0_pvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAEventSenderProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "AuthorizationStatus",
+ "printedName": "AuthorizationStatus",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_authorizationStatusString",
+ "printedName": "kva_authorizationStatusString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So36ATTrackingManagerAuthorizationStatusV14KochavaTrackerE017kva_authorizationD6StringSSyF",
+ "mangledName": "$sSo36ATTrackingManagerAuthorizationStatusV14KochavaTrackerE017kva_authorizationD6StringSSyF",
+ "moduleName": "KochavaTracker",
+ "intro_Macosx": "11.0",
+ "intro_iOS": "14.0",
+ "intro_tvOS": "14.0",
+ "declAttributes": [
+ "AccessControl",
+ "Available",
+ "Available",
+ "Available",
+ "Available",
+ "Available"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AppTrackingTransparency.ATTrackingManager.AuthorizationStatus?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AuthorizationStatus",
+ "printedName": "AppTrackingTransparency.ATTrackingManager.AuthorizationStatus",
+ "usr": "c:@E@ATTrackingManagerAuthorizationStatus"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So36ATTrackingManagerAuthorizationStatusV14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "mangledName": "$sSo36ATTrackingManagerAuthorizationStatusV14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Enum",
+ "usr": "c:@E@ATTrackingManagerAuthorizationStatus",
+ "moduleName": "AppTrackingTransparency",
+ "intro_iOS": "14",
+ "objc_name": "ATTrackingManagerAuthorizationStatus",
+ "declAttributes": [
+ "Available",
+ "SynthesizedProtocol",
+ "ObjC",
+ "SynthesizedProtocol",
+ "Sendable",
+ "Dynamic"
+ ],
+ "isFromExtension": true,
+ "enumRawTypeName": "UInt",
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "UInt",
+ "printedName": "Swift.UInt",
+ "usr": "s:Su"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Date",
+ "printedName": "Date",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_sendDateString",
+ "printedName": "kva_sendDateString(fromRequestBodyDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DateV14KochavaTrackerE08kva_sendB6String25fromRequestBodyDictionarySSSDys11AnyHashableVypGSg_tF",
+ "mangledName": "$s10Foundation4DateV14KochavaTrackerE08kva_sendB6String25fromRequestBodyDictionarySSSDys11AnyHashableVypGSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:10Foundation4DateV",
+ "mangledName": "$s10Foundation4DateV",
+ "moduleName": "Foundation",
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "ReferenceConvertible",
+ "printedName": "ReferenceConvertible",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "ReferenceType",
+ "printedName": "ReferenceType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:10Foundation20ReferenceConvertibleP",
+ "mangledName": "$s10Foundation20ReferenceConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Strideable",
+ "printedName": "Strideable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Stride",
+ "printedName": "Stride",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sx",
+ "mangledName": "$sSx"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomReflectable",
+ "printedName": "CustomReflectable",
+ "usr": "s:s17CustomReflectableP",
+ "mangledName": "$ss17CustomReflectableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_CustomPlaygroundQuickLookable",
+ "printedName": "_CustomPlaygroundQuickLookable",
+ "usr": "s:s30_CustomPlaygroundQuickLookableP",
+ "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "CoarseConversionValue",
+ "printedName": "CoarseConversionValue",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_identifier",
+ "printedName": "kva_identifier()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So32SKAdNetworkCoarseConversionValuea14KochavaTrackerE14kva_identifierSSyF",
+ "mangledName": "$sSo32SKAdNetworkCoarseConversionValuea14KochavaTrackerE14kva_identifierSSyF",
+ "moduleName": "KochavaTracker",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "AccessControl",
+ "Available"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So32SKAdNetworkCoarseConversionValuea14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "mangledName": "$sSo32SKAdNetworkCoarseConversionValuea14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue",
+ "moduleName": "StoreKit",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "Available",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "Sendable"
+ ],
+ "isFromExtension": true,
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSString",
+ "printedName": "Foundation.NSString",
+ "usr": "c:objc(cs)NSString"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_SwiftNewtypeWrapper",
+ "printedName": "_SwiftNewtypeWrapper",
+ "usr": "s:s20_SwiftNewtypeWrapperP",
+ "mangledName": "$ss20_SwiftNewtypeWrapperP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_HasCustomAnyHashableRepresentation",
+ "printedName": "_HasCustomAnyHashableRepresentation",
+ "usr": "s:s35_HasCustomAnyHashableRepresentationP",
+ "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
+ }
+ ]
+ }
+ ],
+ "json_format_version": 8
+ },
+ "ConstValues": [
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 582,
+ "length": 13,
+ "value": "\"Achievement\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 725,
+ "length": 10,
+ "value": "\"Ad Click\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 927,
+ "length": 13,
+ "value": "\"Add to Cart\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1141,
+ "length": 18,
+ "value": "\"Add to Wish List\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1337,
+ "length": 9,
+ "value": "\"Ad View\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1537,
+ "length": 16,
+ "value": "\"Checkout Start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1692,
+ "length": 17,
+ "value": "\"Consent Granted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1855,
+ "length": 8,
+ "value": "\"Custom\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1998,
+ "length": 11,
+ "value": "\"_Deeplink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2199,
+ "length": 16,
+ "value": "\"Level Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2403,
+ "length": 10,
+ "value": "\"Purchase\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2559,
+ "length": 13,
+ "value": "\"Push Opened\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2722,
+ "length": 15,
+ "value": "\"Push Received\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2916,
+ "length": 8,
+ "value": "\"Rating\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3128,
+ "length": 23,
+ "value": "\"Registration Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3335,
+ "length": 8,
+ "value": "\"Search\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3478,
+ "length": 13,
+ "value": "\"Start Trial\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3630,
+ "length": 11,
+ "value": "\"Subscribe\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3837,
+ "length": 19,
+ "value": "\"Tutorial Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 4034,
+ "length": 6,
+ "value": "\"View\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 260,
+ "length": 12,
+ "value": "\"KochavaTracker.KVAEventType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 3731,
+ "length": 11,
+ "value": "\"app_clips\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8505,
+ "length": 34,
+ "value": "\"AppClips.installDeeplinkWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8570,
+ "length": 23,
+ "value": "\"install_deeplink_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8658,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9279,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9343,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9416,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 9843,
+ "length": 38,
+ "value": "\"120cf7c7-e26a-4ec2-b842-2596873ba169\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10145,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12195,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13407,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13547,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1351,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 10837,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 16366,
+ "length": 10,
+ "value": "\"method_3\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 16999,
+ "length": 24,
+ "value": "\"AppleSearchAds.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 17054,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17106,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17193,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18725,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 19695,
+ "length": 52,
+ "value": "\"adapter.closure_collectAsynchronously - will start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 19839,
+ "length": 24,
+ "value": "\"method3AttributionBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 21741,
+ "length": 59,
+ "value": "\"adapter.closure_collectAsynchronously closure_didComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 22087,
+ "length": 102,
+ "value": "\"Collection duration for Apple Search Ads was \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 22180,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26101,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29459,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 288,
+ "length": 17,
+ "value": "\"KochavaTracker.KVAAppleSearchAds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3005,
+ "length": 16,
+ "value": "\"appleWatchBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3111,
+ "length": 11,
+ "value": "\"eventType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3150,
+ "length": 15,
+ "value": "\"eventTypeEnum\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3266,
+ "length": 14,
+ "value": "\"actionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3339,
+ "length": 20,
+ "value": "\"adCampaignIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3420,
+ "length": 22,
+ "value": "\"adCampaignNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3501,
+ "length": 20,
+ "value": "\"adDeviceTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3577,
+ "length": 17,
+ "value": "\"adGroupIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3652,
+ "length": 19,
+ "value": "\"adGroupNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3733,
+ "length": 23,
+ "value": "\"adMediationNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3847,
+ "length": 27,
+ "value": "\"adNetworkConversionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4036,
+ "length": 21,
+ "value": "\"adNetworkNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4115,
+ "length": 19,
+ "value": "\"adPlacementString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4187,
+ "length": 14,
+ "value": "\"adSizeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4254,
+ "length": 14,
+ "value": "\"adTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4444,
+ "length": 20,
+ "value": "\"appleWatchIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4539,
+ "length": 36,
+ "value": "\"appStoreReceiptBase64EncodedString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4636,
+ "length": 22,
+ "value": "\"backgroundBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4722,
+ "length": 23,
+ "value": "\"checkoutAsGuestString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4805,
+ "length": 21,
+ "value": "\"completedBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4896,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4951,
+ "length": 17,
+ "value": "\"contentIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5026,
+ "length": 19,
+ "value": "\"contentTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5100,
+ "length": 16,
+ "value": "\"currencyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5172,
+ "length": 17,
+ "value": "\"customEventName\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5237,
+ "length": 23,
+ "value": "\"customEventNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5328,
+ "length": 6,
+ "value": "\"date\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5375,
+ "length": 12,
+ "value": "\"dateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5445,
+ "length": 19,
+ "value": "\"descriptionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5522,
+ "length": 19,
+ "value": "\"destinationString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5608,
+ "length": 28,
+ "value": "\"durationTimeIntervalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5700,
+ "length": 9,
+ "value": "\"endDate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5753,
+ "length": 15,
+ "value": "\"endDateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5920,
+ "length": 16,
+ "value": "\"infoDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5999,
+ "length": 12,
+ "value": "\"infoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6071,
+ "length": 21,
+ "value": "\"itemAddedFromString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6144,
+ "length": 13,
+ "value": "\"levelString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6224,
+ "length": 28,
+ "value": "\"maxRatingValueDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6305,
+ "length": 12,
+ "value": "\"nameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6371,
+ "length": 15,
+ "value": "\"orderIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6439,
+ "length": 14,
+ "value": "\"originString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6511,
+ "length": 19,
+ "value": "\"payloadDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6601,
+ "length": 20,
+ "value": "\"priceDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6688,
+ "length": 19,
+ "value": "\"priceDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6770,
+ "length": 22,
+ "value": "\"quantityDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6858,
+ "length": 25,
+ "value": "\"ratingValueDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6941,
+ "length": 17,
+ "value": "\"receiptIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7017,
+ "length": 20,
+ "value": "\"referralFromString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7102,
+ "length": 26,
+ "value": "\"registrationMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7182,
+ "length": 15,
+ "value": "\"resultsString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7249,
+ "length": 13,
+ "value": "\"scoreString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7319,
+ "length": 18,
+ "value": "\"searchTermString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7405,
+ "length": 26,
+ "value": "\"serviceLocallyBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7482,
+ "length": 14,
+ "value": "\"sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7557,
+ "length": 22,
+ "value": "\"spatialXDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7642,
+ "length": 22,
+ "value": "\"spatialYDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7727,
+ "length": 22,
+ "value": "\"spatialZDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7815,
+ "length": 11,
+ "value": "\"startDate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7872,
+ "length": 17,
+ "value": "\"startDateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7943,
+ "length": 15,
+ "value": "\"successString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8008,
+ "length": 11,
+ "value": "\"uriString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8072,
+ "length": 14,
+ "value": "\"userIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8141,
+ "length": 16,
+ "value": "\"userNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8213,
+ "length": 17,
+ "value": "\"validatedString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43201,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43917,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47874,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 66658,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "StringLiteral",
+ "offset": 4541,
+ "length": 11,
+ "value": "\"adnetwork\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22940,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28211,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28370,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 13961,
+ "length": 42,
+ "value": "\"AppleSearchAdsMethod3.attributionAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14086,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16424,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 17988,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Array",
+ "offset": 18071,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 18115,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18876,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19137,
+ "length": 63,
+ "value": "\"attributionAdapter.closure_collectAsynchronously - will start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19304,
+ "length": 23,
+ "value": "\"retryWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19384,
+ "length": 18,
+ "value": "\"waitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19796,
+ "length": 38,
+ "value": "\"e81a6d7f-aad8-484c-a0b7-0e69b353b6db\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21012,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21026,
+ "length": 45,
+ "value": "\"AppleAdServicesAttributionGetNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21109,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21132,
+ "length": 35,
+ "value": "\"apple_ad_services_attribution_get\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21205,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21216,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21262,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21351,
+ "length": 12,
+ "value": "\"bodyObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21429,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 21495,
+ "length": 470,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Content-Type\"), (\"valueObject\", \"text\/plain\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22007,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22027,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22075,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22088,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22134,
+ "length": 25,
+ "value": "\"retryTimeIntervalSeries\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22226,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Array",
+ "offset": 22286,
+ "length": 123,
+ "value": "[\"apple_ad_services_attribution_get\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22451,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22565,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 22613,
+ "length": 103,
+ "value": "[(\"class\", \"NSDictionary\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22810,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23870,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23875,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 24033,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24950,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 25038,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 25388,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 25445,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 25552,
+ "length": 22,
+ "value": "\"non_mock_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 26007,
+ "length": 70,
+ "value": "\"attributionAdapter.closure_collectAsynchronously closure_didComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 27199,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 27276,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27334,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27361,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27386,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "FloatLiteral",
+ "offset": 27430,
+ "length": 7,
+ "value": "86400.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 28015,
+ "length": 38,
+ "value": "\"d1d3b1c3-6b3f-4467-aab5-66eaeb03135c\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32465,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37331,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41441,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 470,
+ "length": 24,
+ "value": "\"KochavaTracker.KVAAppleSearchAdsMethod3\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3Attribution.swift",
+ "kind": "StringLiteral",
+ "offset": 530,
+ "length": 35,
+ "value": "\"KochavaTracker.KVAAppleSearchAdsMethod3Attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 3815,
+ "length": 23,
+ "value": "\"app_limit_ad_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 6964,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 7032,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7086,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7111,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7226,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9823,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 8208,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 24322,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 24386,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24447,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 25237,
+ "length": 53,
+ "value": "\"AppTrackingTransparency.authorizationStatusWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 25321,
+ "length": 31,
+ "value": "\"att_authorization_status_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 25403,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25776,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26074,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26138,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26211,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 26757,
+ "length": 38,
+ "value": "\"120cf7c7-e26a-4ec2-b842-2596873ba169\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27046,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 27947,
+ "length": 58,
+ "value": "\"AppTrackingTransparency.requestTrackingAuthorizationTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 28036,
+ "length": 36,
+ "value": "\"att_request_tracking_authorization\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 28123,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 28227,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28600,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28967,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29031,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29104,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 29669,
+ "length": 37,
+ "value": "\"Will request tracking authorization\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 30196,
+ "length": 38,
+ "value": "\"24e72003-af7b-4700-b539-ed74ff370214\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30820,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30866,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 31033,
+ "length": 208,
+ "value": "\"ATT request tracking authorization did complete with status \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 31135,
+ "length": 5,
+ "value": "\" after \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 31228,
+ "length": 3,
+ "value": "\"?\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 31232,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31927,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31970,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45881,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 55638,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 55778,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 5600,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 21386,
+ "length": 27,
+ "value": "\"Attribution.resultAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 21486,
+ "length": 134,
+ "value": "[\"TrackerConfig.retrieveTask\", \"Install.sendTask\", \"Attribution.resultRetrieveWaitTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21703,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22823,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 22989,
+ "length": 38,
+ "value": "\"b10d4939-511b-4fab-bd2f-0b1856f4453d\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24039,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24057,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24092,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24106,
+ "length": 30,
+ "value": "\"AttributionGetNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24150,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24173,
+ "length": 17,
+ "value": "\"get_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24204,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24227,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24245,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24310,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24346,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24656,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24697,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24717,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24741,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24754,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24776,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 24812,
+ "length": 57,
+ "value": "[\"get_attribution\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24887,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24900,
+ "length": 43,
+ "value": "\"https:\/\/control.kochava.com\/track\/kvquery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24961,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25023,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25129,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25142,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25179,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25204,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25320,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25333,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25371,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25386,
+ "length": 17,
+ "value": "\"get_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25485,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25498,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25542,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25557,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25643,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25656,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25699,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25724,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25848,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25861,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25903,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25928,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26044,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26057,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26103,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26128,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26195,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26214,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26300,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26313,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26362,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26387,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26441,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26460,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26546,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 26573,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26611,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26624,
+ "length": 15,
+ "value": "\"attempt_count\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26669,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26694,
+ "length": 39,
+ "value": "\"NetTransaction.attemptCountIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26763,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26782,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26868,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 26895,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26933,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26946,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26990,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27015,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27092,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27111,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27197,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27224,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27262,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27275,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27316,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27341,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27399,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27418,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27504,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27531,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27569,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27582,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27622,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27647,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27715,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27734,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27820,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27847,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27885,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27898,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27936,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27961,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28037,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28056,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28142,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28155,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28194,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28219,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28280,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28299,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28397,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28439,
+ "length": 7,
+ "value": "\"class\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28448,
+ "length": 22,
+ "value": "\"KVAAttributionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28488,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28545,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28556,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28579,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28633,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28648,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28679,
+ "length": 7,
+ "value": "\"retry\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28688,
+ "length": 2,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28758,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28790,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28808,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Dictionary",
+ "offset": 28844,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29336,
+ "length": 113,
+ "value": "\"Sending get_attribution at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29440,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29663,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29789,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29945,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30118,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30203,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30309,
+ "length": 7,
+ "value": "\"retry\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 30338,
+ "length": 4,
+ "value": "30.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 30379,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30656,
+ "length": 86,
+ "value": "\"Attribution results not ready, retrying in \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30733,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30890,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30942,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 31133,
+ "length": 36,
+ "value": "\"Attribution.resultRetrieveWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 31200,
+ "length": 34,
+ "value": "\"attribution_result_retrieve_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 31285,
+ "length": 84,
+ "value": "[\"Install.sendTask\", \"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31538,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31812,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31852,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 33282,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 33338,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 33748,
+ "length": 43,
+ "value": "\"resultRetrieveWaitTask - starting to wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 33859,
+ "length": 29,
+ "value": "\"attributionWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34016,
+ "length": 27,
+ "value": "\"remainingWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34383,
+ "length": 85,
+ "value": "\"Requesting attribution results in \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34459,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34719,
+ "length": 38,
+ "value": "\"8e3747ad-7d28-49e3-9b5f-79add1caaf16\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35842,
+ "length": 32,
+ "value": "\"Attribution.resultRetrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35905,
+ "length": 29,
+ "value": "\"attribution_result_retrieve\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35999,
+ "length": 36,
+ "value": "\"Attribution.resultRetrieveWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 36049,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 36081,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 36262,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36483,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36716,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36756,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37249,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 37394,
+ "length": 38,
+ "value": "\"4153b38f-dffd-4934-b61f-9c390d33527a\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 37534,
+ "length": 38,
+ "value": "\"e66e97ed-d69a-4939-89cc-c7c245759dc1\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41913,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44558,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45694,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttributionResult.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1340,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttributionResult.swift",
+ "kind": "StringLiteral",
+ "offset": 266,
+ "length": 20,
+ "value": "\"KochavaTracker.KVAAttributionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "StringLiteral",
+ "offset": 4847,
+ "length": 20,
+ "value": "\"custom_identifiers\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "StringLiteral",
+ "offset": 11821,
+ "length": 27,
+ "value": "\"CustomIdentifiers.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14494,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14958,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17337,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 8793,
+ "length": 11,
+ "value": "\"deeplinks\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30172,
+ "length": 19,
+ "value": "\"Deeplinks.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30222,
+ "length": 11,
+ "value": "\"deeplinks\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30267,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30695,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30713,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30748,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30762,
+ "length": 29,
+ "value": "\"DeeplinkClickNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30805,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30828,
+ "length": 16,
+ "value": "\"deeplink_click\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30858,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30869,
+ "length": 20,
+ "value": "\"serverUnrestricted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30903,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30926,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30944,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30959,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30977,
+ "length": 40,
+ "value": "\"transactionProcessingWaitEstablishBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31019,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31037,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31078,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31098,
+ "length": 5,
+ "value": "\"GET\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31121,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31134,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31156,
+ "length": 25,
+ "value": "\"retryTimeIntervalSeries\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31221,
+ "length": 29,
+ "value": "\"repeatFinalTimeIntervalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31252,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31279,
+ "length": 19,
+ "value": "\"timeIntervalArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 31300,
+ "length": 11,
+ "value": "[3.0, 10.0]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31347,
+ "length": 21,
+ "value": "\"urlDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 31386,
+ "length": 634,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"url\"), (\"valueSourceIdentifier\", \"Local.urlString\")], [(\"keyString\", \"type\"), (\"valueObject\", \"kochava_device_id\")], [(\"keyString\", \"device_id\"), (\"valueSourceIdentifier\", \"DeviceId.stringAdapter\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32038,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 32074,
+ "length": 56,
+ "value": "[\"deeplink_click\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32148,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32161,
+ "length": 7,
+ "value": "\"{url}\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32196,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 32220,
+ "length": 49,
+ "value": "[(\"class\", \"NSNull\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32283,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 32319,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32574,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32581,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32883,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32890,
+ "length": 48,
+ "value": "\"closure_clickNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33064,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 33071,
+ "length": 33,
+ "value": "\"clickNetTransaction not enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33281,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37053,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37067,
+ "length": 31,
+ "value": "\"DeeplinkProcessNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37112,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37135,
+ "length": 11,
+ "value": "\"smartlink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37160,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37171,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37193,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37234,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 37276,
+ "length": 450,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37744,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37764,
+ "length": 5,
+ "value": "\"GET\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37787,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 37823,
+ "length": 51,
+ "value": "[\"smartlink\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37892,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37905,
+ "length": 33,
+ "value": "\"https:\/\/smart.link\/v1\/links-sdk\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37966,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 37990,
+ "length": 54,
+ "value": "[(\"class\", \"KVADeeplink\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38058,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 38094,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38641,
+ "length": 19,
+ "value": "\"deeplinkURLString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38811,
+ "length": 6,
+ "value": "\"path\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45878,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 46839,
+ "length": 52,
+ "value": "\"Deeplinks.augmentDeferredPrefetchDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 46922,
+ "length": 24,
+ "value": "\"deeplinks_augmentation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47606,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49356,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 4390,
+ "length": 11,
+ "value": "\"device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 24193,
+ "length": 18,
+ "value": "\"DeviceId.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24234,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24271,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 24316,
+ "length": 16,
+ "value": "\"deviceAppGroup\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 25284,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 25339,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25392,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28894,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34428,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35479,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35525,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 3665,
+ "length": 8,
+ "value": "\"events\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9071,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9089,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9124,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9138,
+ "length": 21,
+ "value": "\"EventNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9173,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9196,
+ "length": 7,
+ "value": "\"event\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9217,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9240,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9258,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9273,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9291,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9332,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9352,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9376,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9389,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9411,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 9447,
+ "length": 84,
+ "value": "[\"event_by_name\", \"event\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9549,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9562,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9620,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9682,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9788,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9801,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9838,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9863,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9979,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9992,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10030,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10045,
+ "length": 7,
+ "value": "\"event\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10134,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10147,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10191,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10206,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10292,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10305,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10348,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10373,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10497,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10510,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10552,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10577,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10693,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10706,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10752,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10777,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10844,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10863,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10949,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10962,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11011,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11036,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11090,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11109,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11195,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11222,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11260,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11273,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11317,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11342,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11471,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11498,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11536,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11549,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11590,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11615,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11725,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11752,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11790,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11803,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11843,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11868,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11988,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12015,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12053,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12066,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12104,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12129,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12257,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12284,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12322,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12335,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12384,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12409,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12544,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12571,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12609,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12622,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12672,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12697,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12827,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12854,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12892,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12905,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12954,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12979,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13115,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13142,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13180,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13193,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13231,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13256,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13393,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13420,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13458,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13471,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13509,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13534,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13674,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13701,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13739,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13752,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13790,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13815,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13954,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13981,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14019,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14032,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14075,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14100,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14235,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14262,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14300,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14313,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14361,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14386,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14526,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14553,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14591,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14604,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14648,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14673,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14799,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14826,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14864,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14877,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14919,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14944,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15068,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15095,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15133,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15146,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15184,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15209,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15336,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15363,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15401,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15414,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15459,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15484,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15618,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15645,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15683,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15696,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15742,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15767,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15894,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15921,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15959,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15972,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16016,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16041,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16246,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16287,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16312,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16393,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16409,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16495,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16522,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16560,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16573,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16638,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16770,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16797,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16835,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16848,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16886,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16911,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17049,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17076,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17114,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17127,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17171,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17196,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17322,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17349,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17387,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17400,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17445,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17470,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17597,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17624,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17662,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17675,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17728,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17753,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17888,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17927,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17952,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18013,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18118,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18145,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18183,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18196,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18253,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18278,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18341,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18360,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18446,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18473,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18511,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18524,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18559,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18584,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18701,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18728,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18766,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18779,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18818,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18843,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18970,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18997,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19035,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19048,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19083,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19108,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19172,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19191,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19459,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19466,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19929,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19936,
+ "length": 14,
+ "value": "\"event is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20118,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 20125,
+ "length": 47,
+ "value": "\"closure_sendNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23372,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23558,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33280,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "StringLiteral",
+ "offset": 41019,
+ "length": 51,
+ "value": "\"AdNetworkConversion.extensionIntervalMaximumTimer\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41102,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41629,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41840,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42034,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42094,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42995,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57614,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 3993,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15395,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15413,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15448,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15462,
+ "length": 28,
+ "value": "\"IdentityLinkNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15504,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15527,
+ "length": 14,
+ "value": "\"identityLink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15555,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15578,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15596,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15611,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15629,
+ "length": 40,
+ "value": "\"transactionProcessingWaitEstablishBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15671,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15689,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15730,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15750,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15774,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15787,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15809,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 15845,
+ "length": 54,
+ "value": "[\"identityLink\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15917,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15930,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15988,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16050,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16156,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16169,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16206,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16231,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16347,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16360,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16398,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16413,
+ "length": 14,
+ "value": "\"identityLink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16509,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16522,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16566,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16581,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16667,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16680,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16719,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16744,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16805,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16824,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16910,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16923,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16966,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16991,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17115,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17128,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17170,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17195,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17311,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17324,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17370,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17395,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17462,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17481,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17567,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17580,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17629,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17654,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17708,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17727,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17813,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 17840,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17878,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17891,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17932,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17957,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18067,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18094,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18132,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18145,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18185,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18210,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18330,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18357,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18395,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18408,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18446,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18471,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18599,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18626,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18664,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18677,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18722,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18747,
+ "length": 42,
+ "value": "\"Local.identityLinkRegistrationDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19053,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19060,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19304,
+ "length": 42,
+ "value": "\"Local.identityLinkRegistrationDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19743,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19750,
+ "length": 23,
+ "value": "\"firstKeyString is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19949,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19956,
+ "length": 51,
+ "value": "\"closure_registerNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 20427,
+ "length": 44,
+ "value": "\"IdentityLink.registrationDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 20502,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20551,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23681,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23867,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 8098,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 25172,
+ "length": 31,
+ "value": "\"Install.lastDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 25603,
+ "length": 748,
+ "value": "[(\"DeviceId.stringAdapter\", \"kochava_device_id\"), (\"Tracker.deviceIdStringAdapter\", \"kochava_device_id\"), (\"TrackerGeneral.appGUIDStringAdapter\", \"kochava_app_id\"), (\"Tracker.appGUIDStringAdapter\", \"kochava_app_id\"), (\"KochavaTracker.standardVersionInfoString\", \"sdk_version\"), (\"TrackerDataPoints.appMainBundleVersionStringAdapter\", \"app_version\"), (\"Tracker.appMainBundleVersionStringAdapter\", \"app_version\"), (\"Install.sendDidCompleteDateUnixTime\", \"time\"), (\"TrackerDataPoints.osVersionStringAdapter\", \"os_version\"), (\"Tracker.osVersionStringAdapter\", \"os_version\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 26509,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 26874,
+ "length": 7,
+ "value": "\"count\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28070,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28088,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28123,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28137,
+ "length": 23,
+ "value": "\"InstallNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28174,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28197,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28220,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28243,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28261,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28326,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28657,
+ "length": 23,
+ "value": "\"updateWatchValuesBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28682,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28700,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28741,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28761,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28785,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28798,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28820,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 28856,
+ "length": 49,
+ "value": "[\"install\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28923,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28936,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28994,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29056,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29162,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29175,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29212,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29237,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29353,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29366,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29404,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29419,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29510,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29523,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29567,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29582,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29668,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29681,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29724,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29749,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29873,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29886,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29928,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29953,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30069,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30082,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30128,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30153,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30220,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30239,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30325,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30338,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30387,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30412,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30466,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30485,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30571,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30584,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30620,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30645,
+ "length": 27,
+ "value": "\"CustomIdentifiers.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30702,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30721,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30807,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30820,
+ "length": 11,
+ "value": "\"extension\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30861,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30886,
+ "length": 32,
+ "value": "\"System.appExtensionBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31000,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31027,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31065,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31078,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31126,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31151,
+ "length": 24,
+ "value": "\"AppleSearchAds.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31258,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31285,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31323,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31336,
+ "length": 19,
+ "value": "\"ad_services_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31385,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31410,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31539,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31566,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31604,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31617,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31671,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31696,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31772,
+ "length": 31,
+ "value": "\"valueSourcePropertyNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31805,
+ "length": 33,
+ "value": "\"startDate.unixTimeDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31921,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31948,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31986,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31999,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32043,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32068,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32145,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32164,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32250,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32277,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32315,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32328,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32369,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32394,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32452,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32471,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32557,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32584,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32622,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32635,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32673,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32698,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32774,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32793,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32879,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32906,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32944,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32957,
+ "length": 6,
+ "value": "\"idct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32993,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33018,
+ "length": 35,
+ "value": "\"TrackerDataPoints.idctDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33083,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33102,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33188,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33215,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33253,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33266,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33302,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33327,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33394,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33413,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33499,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33526,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33564,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33577,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33638,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33705,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33724,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33810,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33837,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33888,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33930,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33955,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34027,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34046,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34132,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34159,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34197,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34210,
+ "length": 9,
+ "value": "\"receipt\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34249,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34274,
+ "length": 46,
+ "value": "\"TrackerDataPoints.appStoreReceiptDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34402,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34429,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34467,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34480,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34519,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34544,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34682,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34709,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34747,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34760,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34805,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34830,
+ "length": 44,
+ "value": "\"IdentityLink.registrationDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34904,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34923,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35009,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35036,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35074,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35087,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35125,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35150,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35287,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35314,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35352,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35365,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35415,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35440,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35518,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35537,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35623,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35650,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35688,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35701,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35739,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35764,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35904,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35931,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35969,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35982,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36020,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36045,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36184,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36211,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36249,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36262,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36311,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36336,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36420,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36439,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36525,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36552,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36590,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36603,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36652,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36677,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36760,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36779,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36865,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36892,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36930,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36943,
+ "length": 10,
+ "value": "\"app_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36983,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37008,
+ "length": 57,
+ "value": "\"TrackerDataPoints.appMainBundleDisplayNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37147,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37174,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37212,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37225,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37268,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37293,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37428,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37455,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37493,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37506,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37554,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37579,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37719,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37746,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37784,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37797,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37841,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37866,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37992,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38019,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38057,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38070,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38112,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38137,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38261,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38288,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38326,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38339,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38379,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38404,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38489,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38508,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38594,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38621,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38659,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38672,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38722,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38747,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38814,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38833,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38919,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38946,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38984,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38997,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39050,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39075,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39157,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39176,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39262,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39289,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39327,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39340,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39382,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39407,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39529,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39556,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39594,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39607,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39645,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39670,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39745,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39764,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39850,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39877,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39915,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39928,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39973,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39998,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40080,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40099,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40185,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40212,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40250,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40263,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40309,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40334,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40409,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40428,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40514,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40541,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40579,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40592,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40636,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40661,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40788,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40815,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40853,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40866,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40907,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40932,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41013,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41066,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41082,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41246,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41286,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41311,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41391,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41410,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41496,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41523,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41561,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41574,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41612,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41637,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41723,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41742,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41828,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41855,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41893,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41906,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41950,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41975,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42049,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42068,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42154,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 42181,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42219,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42232,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42277,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42302,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42377,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42396,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42482,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 42509,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42547,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42560,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42638,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42708,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42727,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42813,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42826,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42865,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42890,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42951,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42970,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43056,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43083,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43121,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43134,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43191,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43216,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43279,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43298,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43384,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43397,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43433,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43458,
+ "length": 19,
+ "value": "\"Deeplinks.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43507,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43526,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43612,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43639,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43677,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43690,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43725,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43750,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43815,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43834,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43920,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43947,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43985,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43998,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44037,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44062,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44137,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44156,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44242,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44269,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44307,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44320,
+ "length": 18,
+ "value": "\"sdk_generated_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44368,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44393,
+ "length": 54,
+ "value": "\"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44529,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44556,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44594,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44607,
+ "length": 11,
+ "value": "\"system_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44648,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44673,
+ "length": 49,
+ "value": "\"TrackerDataPoints.webViewUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44804,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44831,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44869,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44882,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44917,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44942,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45006,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45025,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45123,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45155,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45173,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 45209,
+ "length": 70,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45700,
+ "length": 94,
+ "value": "\"Sending install at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "IntegerLiteral",
+ "offset": 45783,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45785,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46257,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46306,
+ "length": 14,
+ "value": "\"install_send\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46385,
+ "length": 53,
+ "value": "\"AppTrackingTransparency.authorizationStatusWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46452,
+ "length": 58,
+ "value": "\"AppTrackingTransparency.requestTrackingAuthorizationTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46524,
+ "length": 34,
+ "value": "\"AppClips.installDeeplinkWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46572,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 46835,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47056,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48665,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48712,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "FloatLiteral",
+ "offset": 48785,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 50913,
+ "length": 30,
+ "value": "\"Networking.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 50965,
+ "length": 27,
+ "value": "\"Install.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 51023,
+ "length": 24,
+ "value": "\"install_watched_values\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57920,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 61430,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 76339,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 5077,
+ "length": 20,
+ "value": "\"push_notifications\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 15885,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 15968,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16038,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16063,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 16107,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 16472,
+ "length": 38,
+ "value": "\"c35a4110-99b0-494f-a1f5-d8d5fe4b0bc4\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17290,
+ "length": 20,
+ "value": "\"CFBundleIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17376,
+ "length": 26,
+ "value": "\"com.apple.dt.xctest.tool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17871,
+ "length": 16,
+ "value": "\"not_determined\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18039,
+ "length": 8,
+ "value": "\"denied\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18203,
+ "length": 12,
+ "value": "\"authorized\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18552,
+ "length": 13,
+ "value": "\"provisional\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 20926,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 20997,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21054,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21079,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 21123,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21629,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21843,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22130,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22699,
+ "length": 12,
+ "value": "\"authorized\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22812,
+ "length": 13,
+ "value": "\"provisional\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22926,
+ "length": 16,
+ "value": "\"not_determined\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 23770,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 23842,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23902,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23927,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 23971,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 24127,
+ "length": 38,
+ "value": "\"b5fd3303-ad12-4700-82f7-ca1e1d02a686\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25158,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25176,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25211,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25225,
+ "length": 41,
+ "value": "\"PushNotificationsTokenAddNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25280,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25303,
+ "length": 16,
+ "value": "\"push_token_add\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25333,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25356,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25374,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25389,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25407,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25448,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25468,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25492,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25505,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25527,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 25563,
+ "length": 56,
+ "value": "[\"push_token_add\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25637,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25650,
+ "length": 41,
+ "value": "\"https:\/\/token.api.kochava.com\/token\/add\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25709,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25771,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25877,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25890,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25927,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25952,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26068,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26081,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26125,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26140,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26226,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26239,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26282,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26307,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26431,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26444,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26486,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26511,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26627,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26640,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26686,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26711,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26778,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26797,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26883,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26896,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26945,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26970,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27024,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27043,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27129,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27156,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27194,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27207,
+ "length": 7,
+ "value": "\"token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27244,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27269,
+ "length": 28,
+ "value": "\"Local.deviceTokenHexString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27379,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27406,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27444,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27457,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27497,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27522,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27654,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27681,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27719,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27732,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27770,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27795,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27933,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27960,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27998,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28011,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28052,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28077,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28187,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28214,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28265,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28305,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28330,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28450,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28477,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28515,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28528,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28594,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28619,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28753,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28780,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28818,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28831,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28884,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28909,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29031,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 29058,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29096,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29109,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29165,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29190,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29313,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29326,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29365,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29390,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29451,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29470,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29795,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29813,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29848,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29862,
+ "length": 44,
+ "value": "\"PushNotificationsTokenRemoveNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29920,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29943,
+ "length": 19,
+ "value": "\"push_token_remove\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29976,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29999,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30017,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30050,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30091,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30111,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30135,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30148,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30170,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 30206,
+ "length": 59,
+ "value": "[\"push_token_remove\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30283,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30296,
+ "length": 44,
+ "value": "\"https:\/\/token.api.kochava.com\/token\/remove\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30358,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30420,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30526,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30539,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30576,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30601,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30717,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30730,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30774,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30789,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30888,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30931,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30956,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31080,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31093,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31135,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31160,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31276,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31289,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31335,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31360,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31427,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31446,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31532,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31545,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31594,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31619,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31673,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31692,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31778,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 31805,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31843,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31856,
+ "length": 7,
+ "value": "\"token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31893,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31918,
+ "length": 28,
+ "value": "\"Local.deviceTokenHexString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32028,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32055,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32093,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32106,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32146,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32171,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32303,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32330,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32368,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32381,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32419,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32444,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32582,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32609,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32647,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32660,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32701,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32726,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32836,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32863,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32901,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32914,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32954,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32979,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33099,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33126,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33164,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33177,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33243,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33268,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33402,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33429,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33467,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33480,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33533,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33558,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33680,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33707,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33745,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33758,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33814,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33839,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33962,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33975,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34014,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34039,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34100,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34119,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34638,
+ "length": 37,
+ "value": "\"PushNotifications.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34706,
+ "length": 35,
+ "value": "\"push_notifications_watched_values\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 35490,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Dictionary",
+ "offset": 45029,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45052,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45127,
+ "length": 9,
+ "value": "\"KVAPE-U\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45319,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45512,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46114,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 46212,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46489,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversionEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 311,
+ "length": 27,
+ "value": "\"KochavaTracker.KVAAdNetworkConversionEvent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversionLockWindow.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8740,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 4179,
+ "length": 9,
+ "value": "\"general\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 18272,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 18340,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18390,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19138,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19152,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19187,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19210,
+ "length": 7,
+ "value": "\"basic\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19231,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19242,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19264,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19329,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19365,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19920,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "Dictionary",
+ "offset": 19943,
+ "length": 728,
+ "value": "[(\"headerDictionaryFormat\", [(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"User-Agent\"), (\"valueSourceIdentifier\", \"TrackerDataPoints.userAgentStringAdapter\")]])])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20685,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20727,
+ "length": 7,
+ "value": "\"class\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20736,
+ "length": 14,
+ "value": "\"NSDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20768,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "Dictionary",
+ "offset": 20803,
+ "length": 54,
+ "value": "[(\"success\", \"1\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20875,
+ "length": 21,
+ "value": "\"httpStatusCodeLocal\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "IntegerLiteral",
+ "offset": 20898,
+ "length": 3,
+ "value": "200"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21115,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 21431,
+ "length": 52,
+ "value": "\"TrackerGeneral.netTransactionDidSucceedBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21606,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 21675,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21787,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 22294,
+ "length": 41,
+ "value": "\"TrackerGeneral.partnerNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 22366,
+ "length": 14,
+ "value": "\"partner_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22414,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23235,
+ "length": 45,
+ "value": "\"TrackerGeneral.startSequenceDidCompleteTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23311,
+ "length": 16,
+ "value": "\"start_sequence\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23392,
+ "length": 32,
+ "value": "\"Attribution.resultRetrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23438,
+ "length": 25,
+ "value": "\"TrackerUpdates.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23477,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23509,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24258,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24340,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24378,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30297,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30557,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30685,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32330,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 32589,
+ "length": 41,
+ "value": "\"TrackerGeneral.startSequenceDidComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotificationsToken.swift",
+ "kind": "StringLiteral",
+ "offset": 280,
+ "length": 25,
+ "value": "\"KochavaTracker.KVAPushNotificationsToken\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "StringLiteral",
+ "offset": 29702,
+ "length": 22,
+ "value": "\"KVASession.didMutate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 34486,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 34653,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36077,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36238,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 39830,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40846,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "FloatLiteral",
+ "offset": 41464,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "StringLiteral",
+ "offset": 262,
+ "length": 10,
+ "value": "\"KochavaTracker.KVASession\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 5162,
+ "length": 10,
+ "value": "\"sessions\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 25412,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 25490,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25538,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25783,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 26161,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 26238,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26280,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "FloatLiteral",
+ "offset": 26849,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27611,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27629,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27664,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27678,
+ "length": 28,
+ "value": "\"SessionBeginNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27720,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27743,
+ "length": 15,
+ "value": "\"session_begin\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27772,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27795,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27813,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27828,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27846,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27887,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27907,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27931,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27944,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27966,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 28002,
+ "length": 86,
+ "value": "[\"session_begin\", \"session\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28106,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28119,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28177,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28239,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28345,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28358,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28395,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28420,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28536,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28549,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28587,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28602,
+ "length": 9,
+ "value": "\"session\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28693,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28706,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28750,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28765,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28851,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28864,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28907,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28932,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29056,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29069,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29111,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29136,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29265,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29311,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29336,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29403,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29422,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29508,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29521,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29570,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29595,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29649,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29668,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29754,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 29781,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29819,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29832,
+ "length": 8,
+ "value": "\"source\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29870,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29895,
+ "length": 20,
+ "value": "\"Local.sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29997,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30024,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30062,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30075,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30116,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30141,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30251,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30278,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30316,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30329,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30369,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30394,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30514,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30541,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30579,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30592,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30630,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "IntegerLiteral",
+ "offset": 30645,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30728,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30755,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30793,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30806,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30855,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30880,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31015,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31042,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31080,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31093,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31143,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31168,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31298,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31325,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31363,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31376,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31425,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31450,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31586,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31613,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31651,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31664,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31702,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31727,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31864,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31891,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31929,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31942,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31980,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32005,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32145,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32172,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32210,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32223,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32261,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32286,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32425,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32452,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32490,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32503,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32546,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32571,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32706,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32733,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32771,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32784,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32832,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32857,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32997,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33024,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33062,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33075,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33119,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33144,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33270,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33297,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33335,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33348,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33390,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33415,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33539,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33566,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33604,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33617,
+ "length": 7,
+ "value": "\"state\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33654,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33669,
+ "length": 8,
+ "value": "\"resume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33759,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33786,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33824,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33837,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33875,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33900,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34027,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34054,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34092,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34105,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34150,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34175,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34309,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34336,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34374,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34387,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34433,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34458,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34585,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34612,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34650,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34663,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34707,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34732,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34859,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34886,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34924,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34937,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34978,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35003,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35084,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35100,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35186,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35213,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35251,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35264,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35304,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35329,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35461,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35488,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35526,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35539,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35577,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35602,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35740,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35767,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35805,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35818,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35862,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35887,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36013,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36040,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36078,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36091,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36136,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36161,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36288,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36315,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36353,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36366,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36419,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36444,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36566,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36593,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36631,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36644,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36679,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36704,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36821,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36848,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36886,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36899,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36938,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36963,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37090,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37103,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37142,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37167,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37228,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37247,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37333,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 37360,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37398,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37411,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37468,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37493,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37556,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37575,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37661,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 37688,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37726,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37739,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37774,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37799,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37863,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37882,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38215,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38233,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38268,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38282,
+ "length": 26,
+ "value": "\"SessionEndNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38322,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38345,
+ "length": 13,
+ "value": "\"session_end\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38372,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38395,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38413,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38428,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38446,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38487,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38507,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38531,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38544,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38566,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 38602,
+ "length": 84,
+ "value": "[\"session_end\", \"session\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38704,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38717,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38775,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38837,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38943,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38956,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38993,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39018,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39134,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39147,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39185,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39200,
+ "length": 9,
+ "value": "\"session\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39291,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39304,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39348,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39363,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39449,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39462,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39505,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39530,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39654,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39667,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39709,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39734,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39850,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39863,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39909,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39934,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40001,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40020,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40106,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40119,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40168,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40193,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40247,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40266,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40352,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40379,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40417,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40430,
+ "length": 8,
+ "value": "\"source\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40468,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40493,
+ "length": 20,
+ "value": "\"Local.sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40595,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40622,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40660,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40673,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40714,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40739,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40849,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40876,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40914,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40927,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40967,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40992,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41112,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41139,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41177,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41190,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41228,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41253,
+ "length": 22,
+ "value": "\"Local.upTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41357,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41384,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41422,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41435,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41484,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41509,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41644,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41671,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41709,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41722,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41772,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41797,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41927,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41954,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41992,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42005,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42054,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42079,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42215,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42242,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42280,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42293,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42331,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42356,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42493,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42520,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42558,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42571,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42609,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42634,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42774,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42801,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42839,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42852,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42890,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42915,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43054,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43081,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43119,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43132,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43175,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43200,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43335,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43362,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43400,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43413,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43461,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43486,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43626,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43653,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43691,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43704,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43748,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43773,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43899,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43926,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43964,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43977,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44019,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44044,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44246,
+ "length": 7,
+ "value": "\"state\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44283,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44298,
+ "length": 7,
+ "value": "\"pause\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44387,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44414,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44452,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44465,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44503,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44528,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44655,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44682,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44720,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44733,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44778,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44803,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44937,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44964,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45002,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45015,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45061,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45086,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45213,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45240,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45278,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45291,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45335,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45360,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45487,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45514,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45552,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45565,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45606,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45631,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45712,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45728,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45814,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45841,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45879,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45892,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45932,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45957,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46089,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46116,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46154,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46167,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46205,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46230,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46368,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46395,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46433,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46446,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46490,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46515,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46641,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46668,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46706,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46719,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46764,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46789,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46916,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46943,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46981,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46994,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47047,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47072,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47194,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 47221,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47259,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47272,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47307,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47332,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47449,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 47476,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47514,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47527,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47566,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47591,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47718,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47731,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47767,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47792,
+ "length": 24,
+ "value": "\"Local.reportDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47898,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47911,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47950,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47975,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48036,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48055,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48141,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 48168,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48206,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48219,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48276,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48301,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48364,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48383,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48469,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 48496,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48534,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48547,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48582,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48607,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48671,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48690,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56787,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69106,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47976,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48205,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48239,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 48835,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48877,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48929,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49122,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49156,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 50551,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50834,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50989,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 51095,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54382,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 54389,
+ "length": 64,
+ "value": "\"privacy denies event name '\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 54451,
+ "length": 3,
+ "value": "\"'\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56462,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 56469,
+ "length": 73,
+ "value": "\"privacy denies identity link name '\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 56540,
+ "length": 3,
+ "value": "\"'\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 60725,
+ "length": 11,
+ "value": "\"send_date\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67508,
+ "length": 17,
+ "value": "\"Tracker.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67556,
+ "length": 9,
+ "value": "\"tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67639,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67717,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67750,
+ "length": 9,
+ "value": "\"Tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67804,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 67849,
+ "length": 4,
+ "value": "0.25"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67901,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68508,
+ "length": 31,
+ "value": "\"KVATracker.mutatorTokenString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68793,
+ "length": 35,
+ "value": "\"Tracker.sharedInstanceBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68859,
+ "length": 30,
+ "value": "\"tracker_shared_instance_bool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 68923,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 69466,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 69525,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69570,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 77075,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78333,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "IntegerLiteral",
+ "offset": 79584,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 4633,
+ "length": 8,
+ "value": "\"config\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 20789,
+ "length": 33,
+ "value": "\"TrackerConfig.dictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20905,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20932,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21443,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 21613,
+ "length": 38,
+ "value": "\"d779849f-fe1d-4690-8edd-e3179914defa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22851,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22869,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22904,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22918,
+ "length": 20,
+ "value": "\"InitNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22952,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22975,
+ "length": 6,
+ "value": "\"init\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22995,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23006,
+ "length": 20,
+ "value": "\"serverUnrestricted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23040,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23087,
+ "length": 15,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23116,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23157,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23177,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23201,
+ "length": 33,
+ "value": "\"privacyRedactionKeySuffixString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23236,
+ "length": 9,
+ "value": "\" (init)\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23263,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23276,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23298,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23334,
+ "length": 46,
+ "value": "[\"init\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23398,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23411,
+ "length": 50,
+ "value": "\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23479,
+ "length": 14,
+ "value": "\"_2_urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23495,
+ "length": 197,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"i\", \"t\", \"-\", \"t\", \"e\", \"s\", \"t\", \"i\", \"n\", \"g\", \".\", \"a\", \"p\", \"i\", \".\", \"k\", \"o\", \"c\", \"h\", \"a\", \"v\", \"a\", \".\", \"c\", \"o\", \"m\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23710,
+ "length": 14,
+ "value": "\"_3_urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23726,
+ "length": 137,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \":\", \"\/\", \"\/\", \"l\", \"o\", \"c\", \"a\", \"l\", \"h\", \"o\", \"s\", \"t\", \":\", \"8\", \"3\", \"1\", \"5\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23881,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 23923,
+ "length": 666,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"User-Agent\"), (\"valueSourceIdentifier\", \"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24607,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24669,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24775,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24788,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24825,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24850,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24966,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24979,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25017,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25032,
+ "length": 6,
+ "value": "\"init\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25120,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25133,
+ "length": 10,
+ "value": "\"products\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25173,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25198,
+ "length": 39,
+ "value": "\"ProductController.productArrayAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25319,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25332,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25376,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25391,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25477,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25490,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25533,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25558,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25682,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25695,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25737,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25762,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25878,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25891,
+ "length": 13,
+ "value": "\"bundle_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25934,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25959,
+ "length": 27,
+ "value": "\"KochavaTracker.bundleType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26068,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26081,
+ "length": 13,
+ "value": "\"instance_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26124,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26149,
+ "length": 38,
+ "value": "\"Networking.instanceIdentifierAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26269,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26282,
+ "length": 17,
+ "value": "\"shared_instance\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26329,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26354,
+ "length": 35,
+ "value": "\"Tracker.sharedInstanceBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26471,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26484,
+ "length": 12,
+ "value": "\"storage_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26526,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26551,
+ "length": 27,
+ "value": "\"Tracker.storageIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26660,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26673,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26719,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26744,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26811,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26830,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26916,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26929,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26978,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27003,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27057,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27076,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27162,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27175,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27217,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27242,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27314,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27333,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27419,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 27446,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27484,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27497,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27541,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27566,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27643,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27662,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27748,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27761,
+ "length": 11,
+ "value": "\"extension\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27802,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27827,
+ "length": 32,
+ "value": "\"System.appExtensionBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27941,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 27968,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28006,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28019,
+ "length": 14,
+ "value": "\"partner_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28063,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28088,
+ "length": 41,
+ "value": "\"TrackerGeneral.partnerNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28211,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28238,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28276,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28289,
+ "length": 10,
+ "value": "\"platform\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28329,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28354,
+ "length": 45,
+ "value": "\"TrackerDataPoints.platformNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28481,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28508,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28546,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28559,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28600,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28625,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28683,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28702,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28788,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28815,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28853,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28866,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28906,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28931,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28999,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29018,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29104,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29131,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29169,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29182,
+ "length": 13,
+ "value": "\"system_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29225,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29250,
+ "length": 49,
+ "value": "\"TrackerDataPoints.deviceSystemNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29381,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29408,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29446,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29459,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29497,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29522,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29598,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29617,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29703,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29730,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29768,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29781,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29820,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29845,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29983,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30010,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30048,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30061,
+ "length": 16,
+ "value": "\"min_os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30107,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30132,
+ "length": 49,
+ "value": "\"TrackerDataPoints.minimumOSVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30263,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30290,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30328,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30341,
+ "length": 14,
+ "value": "\"last_install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30385,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30410,
+ "length": 31,
+ "value": "\"Install.lastDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30471,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30490,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30576,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30603,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30641,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30654,
+ "length": 5,
+ "value": "\"url\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30689,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30714,
+ "length": 33,
+ "value": "\"NetTransaction.urlStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30777,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30796,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30882,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30909,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30947,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30960,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31002,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31027,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31151,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 31178,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31216,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31229,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31267,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31292,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31429,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 31456,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31494,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31507,
+ "length": 24,
+ "value": "\"deeplinks_augmentation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31561,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31586,
+ "length": 52,
+ "value": "\"Deeplinks.augmentDeferredPrefetchDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31720,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31733,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31772,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31797,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31858,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31877,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31975,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32017,
+ "length": 18,
+ "value": "\"localAllowedBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32037,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32060,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32117,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32128,
+ "length": 3,
+ "value": "\"1\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32153,
+ "length": 9,
+ "value": "\"general\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 32184,
+ "length": 68,
+ "value": "[(\"sdk_disabled\", true)]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32298,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32330,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32348,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 32384,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32469,
+ "length": 16,
+ "value": "\"variationArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32539,
+ "length": 11,
+ "value": "\"start_ymd\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32552,
+ "length": 10,
+ "value": "\"20200101\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32584,
+ "length": 6,
+ "value": "\"urls\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32638,
+ "length": 50,
+ "value": "\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 32714,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"l\", \"i\", \"f\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 32889,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33064,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"a\", \"k\", \"i\", \"s\", \"i\", \"n\", \"n\", \".\", \"i\", \"n\", \"f\", \"o\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33239,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33414,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"a\", \"k\", \"i\", \"s\", \"i\", \"n\", \"n\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33589,
+ "length": 145,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"x\", \"y\", \"z\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33760,
+ "length": 153,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"s\", \"t\", \"o\", \"r\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33939,
+ "length": 153,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"w\", \"o\", \"r\", \"l\", \"d\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34172,
+ "length": 11,
+ "value": "\"start_ymd\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34185,
+ "length": 10,
+ "value": "\"20250101\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34217,
+ "length": 6,
+ "value": "\"urls\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 34245,
+ "length": 98,
+ "value": "[\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35059,
+ "length": 87,
+ "value": "\"Sending kvinit at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35120,
+ "length": 7,
+ "value": "\" seconds to \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35144,
+ "length": 1,
+ "value": "\")\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35777,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35836,
+ "length": 17,
+ "value": "\"config_retrieve\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36387,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 36727,
+ "length": 38,
+ "value": "\"13783265-a6db-4d2e-885d-a36435446793\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 36867,
+ "length": 38,
+ "value": "\"85248e1d-5821-4bc4-93ef-a01c57e357bc\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 37307,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43057,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43702,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45249,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 3875,
+ "length": 12,
+ "value": "\"datapoints\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 15907,
+ "length": 57,
+ "value": "\"TrackerDataPoints.appMainBundleDisplayNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 15995,
+ "length": 10,
+ "value": "\"app_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16039,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16177,
+ "length": 21,
+ "value": "\"CFBundleDisplayName\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16232,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16908,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16995,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17038,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17176,
+ "length": 20,
+ "value": "\"CFBundleIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17230,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17951,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18040,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18092,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18117,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18255,
+ "length": 28,
+ "value": "\"CFBundleShortVersionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18317,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19024,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19108,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19155,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19180,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19318,
+ "length": 17,
+ "value": "\"CFBundleVersion\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19369,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19959,
+ "length": 46,
+ "value": "\"TrackerDataPoints.appStoreReceiptDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20036,
+ "length": 9,
+ "value": "\"receipt\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20079,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20808,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20884,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20932,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21611,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21694,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21743,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 21787,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21999,
+ "length": 38,
+ "value": "\"a9ea8db5-bb74-4a70-aada-5de7f7efefe4\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22276,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 22413,
+ "length": 5,
+ "value": "100.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 23688,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 23764,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23814,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 23858,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24070,
+ "length": 38,
+ "value": "\"4f413e0a-ec98-4ce0-8525-9ed986f732b9\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24347,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24580,
+ "length": 13,
+ "value": "\"discharging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24693,
+ "length": 10,
+ "value": "\"charging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24799,
+ "length": 6,
+ "value": "\"full\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24945,
+ "length": 11,
+ "value": "\"nobattery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26007,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26073,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26112,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 26156,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26913,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26988,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27036,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 27080,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 28677,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 28753,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28802,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 28846,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 30158,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 30227,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30271,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 31161,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 31248,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31290,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31315,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 31359,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 32054,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 32137,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32194,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32219,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 32263,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 34261,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 34336,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34384,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 35206,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 35285,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35339,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 35383,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36272,
+ "length": 11,
+ "value": "\"landscape\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36319,
+ "length": 10,
+ "value": "\"portrait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36635,
+ "length": 38,
+ "value": "\"84ae1223-4901-4632-a982-f5c3ccfcd78d\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 37541,
+ "length": 49,
+ "value": "\"TrackerDataPoints.deviceSystemNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 37621,
+ "length": 13,
+ "value": "\"system_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37668,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 38304,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 38390,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38434,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38459,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 38503,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39056,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39142,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39184,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39866,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39942,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39985,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 40212,
+ "length": 21,
+ "value": "\"IABUSPrivacy_String\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40284,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40419,
+ "length": 3,
+ "value": "128"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 41038,
+ "length": 35,
+ "value": "\"TrackerDataPoints.idctDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 41104,
+ "length": 6,
+ "value": "\"idct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41144,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 41188,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 42922,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 42990,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43030,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43055,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 43099,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 44367,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 44435,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44475,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44500,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 44544,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 45410,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 45483,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45529,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46024,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46105,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46149,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46174,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 46218,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46877,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46961,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47014,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 47058,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 48228,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 48317,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48359,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 48403,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 49170,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 49258,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49300,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 49344,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50154,
+ "length": 49,
+ "value": "\"TrackerDataPoints.minimumOSVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50234,
+ "length": 16,
+ "value": "\"min_os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50284,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50422,
+ "length": 18,
+ "value": "\"MinimumOSVersion\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51119,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51204,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 51257,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 51301,
+ "length": 4,
+ "value": "30.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "Array",
+ "offset": 51538,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51649,
+ "length": 16,
+ "value": "\"www.google.com\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 52032,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52102,
+ "length": 10,
+ "value": "\"cellular\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 52192,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52262,
+ "length": 6,
+ "value": "\"wifi\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52376,
+ "length": 6,
+ "value": "\"none\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53095,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53166,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53212,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53237,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53452,
+ "length": 11,
+ "value": "\"\/bin\/bash\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53465,
+ "length": 3,
+ "value": "\"r\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 54739,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 54812,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54858,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54883,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55020,
+ "length": 66,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55051,
+ "length": 1,
+ "value": "\" \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55085,
+ "length": 14,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "Dictionary",
+ "offset": 55714,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56399,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57238,
+ "length": 45,
+ "value": "\"TrackerDataPoints.platformNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57314,
+ "length": 10,
+ "value": "\"platform\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57358,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57502,
+ "length": 13,
+ "value": "\"ios-appclip\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57547,
+ "length": 5,
+ "value": "\"ios\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 66149,
+ "length": 54,
+ "value": "\"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 66234,
+ "length": 18,
+ "value": "\"sdk_generated_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 66286,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 67293,
+ "length": 42,
+ "value": "\"TrackerDataPoints.userAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 67366,
+ "length": 12,
+ "value": "\"User-Agent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67412,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67873,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 68926,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 69002,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69044,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 69088,
+ "length": 4,
+ "value": "10.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 70076,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 70141,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 70180,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 70224,
+ "length": 4,
+ "value": "0.25"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 70495,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71266,
+ "length": 5,
+ "value": "\"tun\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71331,
+ "length": 5,
+ "value": "\"tap\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71396,
+ "length": 7,
+ "value": "\"ipsec\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71463,
+ "length": 5,
+ "value": "\"ppp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 72438,
+ "length": 49,
+ "value": "\"TrackerDataPoints.webViewUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 72518,
+ "length": 11,
+ "value": "\"system_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 72563,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 72590,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73183,
+ "length": 38,
+ "value": "\"4544725c-203c-45d8-954c-7607ff31124b\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73480,
+ "length": 15,
+ "value": "\"<\/html>\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73558,
+ "length": 21,
+ "value": "\"navigator.userAgent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74049,
+ "length": 22,
+ "value": "\"User Agent Persisted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74102,
+ "length": 26,
+ "value": "\"User Agent Not Persisted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74462,
+ "length": 17,
+ "value": "\"userAgentString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 75025,
+ "length": 84,
+ "value": "\"Collection duration for User Agent was \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 75100,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78535,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78700,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "StringLiteral",
+ "offset": 3219,
+ "length": 9,
+ "value": "\"logging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11400,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11528,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Array",
+ "offset": 2207,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2319,
+ "length": 14,
+ "value": "\"AVFoundation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2443,
+ "length": 9,
+ "value": "\"Battery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2569,
+ "length": 15,
+ "value": "\"CoreTelephony\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2848,
+ "length": 18,
+ "value": "\"ScreenAttributes\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 3001,
+ "length": 18,
+ "value": "\"WebViewUserAgent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 3121,
+ "length": 9,
+ "value": "\"Tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3572,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3721,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4036,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4283,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4544,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4888,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5019,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5287,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5539,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5827,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5954,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6271,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6556,
+ "length": 51,
+ "value": "\"COMPILER_FLAG_APP_TRACKING_TRANSPARENCY_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6691,
+ "length": 28,
+ "value": "\"COMPILER_FLAG_AVFOUNDATION\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6798,
+ "length": 23,
+ "value": "\"COMPILER_FLAG_BATTERY\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6906,
+ "length": 30,
+ "value": "\"COMPILER_FLAG_CORE_TELEPHONY\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7022,
+ "length": 31,
+ "value": "\"COMPILER_FLAG_CRASH_REPORTING\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7138,
+ "length": 30,
+ "value": "\"COMPILER_FLAG_IDCT_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7256,
+ "length": 33,
+ "value": "\"COMPILER_FLAG_SCREEN_ATTRIBUTES\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7382,
+ "length": 39,
+ "value": "\"COMPILER_FLAG_SKADNETWORK_4_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7509,
+ "length": 35,
+ "value": "\"COMPILER_FLAG_WEB_VIEW_USER_AGENT\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Array",
+ "offset": 7807,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7841,
+ "length": 21,
+ "value": "\"KVAAdNetworkProduct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7935,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8296,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8448,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8486,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8558,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Dictionary",
+ "offset": 8788,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 8905,
+ "length": 32,
+ "value": "\"didInvalidateSharedTrackerBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8941,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 3448,
+ "length": 9,
+ "value": "\"updates\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12096,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12114,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12149,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12163,
+ "length": 22,
+ "value": "\"UpdateNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12199,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12222,
+ "length": 8,
+ "value": "\"update\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12244,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12267,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12285,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12300,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12318,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12359,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12379,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12403,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12416,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12438,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 12474,
+ "length": 48,
+ "value": "[\"update\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12540,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12553,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12611,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12673,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12779,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12792,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12829,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12854,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12970,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12983,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13021,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13036,
+ "length": 8,
+ "value": "\"update\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13126,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13139,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13183,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13198,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13284,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13297,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13340,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13365,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13489,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13502,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13544,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13569,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13685,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13698,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13744,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13769,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13836,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13855,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13941,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13954,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14003,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14028,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14082,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14101,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14187,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14214,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14265,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14309,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14334,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14463,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14490,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14528,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14541,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14582,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14607,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14717,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14744,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14782,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14795,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14835,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14860,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14980,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15007,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15045,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15058,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15096,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15121,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15249,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15276,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15314,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15327,
+ "length": 19,
+ "value": "\"ad_services_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15376,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15401,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15477,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15502,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15589,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15616,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15654,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15667,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15721,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15746,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15822,
+ "length": 31,
+ "value": "\"valueSourcePropertyNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15855,
+ "length": 33,
+ "value": "\"startDate.unixTimeDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15918,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15943,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16030,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16057,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16095,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16108,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16158,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16183,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16250,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16275,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16362,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16389,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16427,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16440,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16476,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16501,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16568,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16593,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16680,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16707,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16745,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16758,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16794,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16819,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16886,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16911,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16998,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17025,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17063,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17076,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17119,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17144,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17227,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17252,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17339,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17366,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17404,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17417,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17465,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17490,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17578,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17603,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17690,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17717,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17755,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17768,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17810,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17835,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17907,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17932,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18019,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18046,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18084,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18097,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18150,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18175,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18257,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18282,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18369,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18396,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18434,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18447,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18489,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18514,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18584,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18609,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18696,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18723,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18761,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18774,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18814,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18839,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18924,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18949,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19036,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19063,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19101,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19114,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19154,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19179,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19259,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19284,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19371,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19398,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19436,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19449,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19487,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19512,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19598,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19623,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19710,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19723,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19762,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19787,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19848,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19867,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19953,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19980,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20018,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20031,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20088,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20113,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20176,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20195,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20819,
+ "length": 25,
+ "value": "\"TrackerUpdates.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20879,
+ "length": 14,
+ "value": "\"updates_send\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20970,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 21006,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 21288,
+ "length": 60,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21671,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21785,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24281,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25216,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25356,
+ "length": 5,
+ "value": "false"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.private.swiftinterface b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.private.swiftinterface
new file mode 100644
index 0000000..0bed93e
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.private.swiftinterface
@@ -0,0 +1,863 @@
+// swift-interface-format-version: 1.0
+// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
+// swift-module-flags: -target arm64-apple-ios12.4 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name KochavaTracker
+// swift-module-flags-ignorable: -enable-bare-slash-regex
+import AVFoundation
+import AdServices
+import AdSupport
+import AppTrackingTransparency
+import CoreTelephony
+import DeviceCheck
+import Foundation
+import JavaScriptCore
+import KochavaCore
+@_exported import KochavaTracker
+import StoreKit
+import Swift
+import SystemConfiguration
+import UIKit
+import UserNotifications
+import WebKit
+import _Concurrency
+import _StringProcessing
+@_hasMissingDesignatedInitializers @objc(KVAEventType) final public class KVAEventType : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ @objc public static let achievement: KochavaTracker.KVAEventType
+ @objc public static let adClick: KochavaTracker.KVAEventType
+ @objc public static let addToCart: KochavaTracker.KVAEventType
+ @objc public static let addToWishList: KochavaTracker.KVAEventType
+ @objc public static let adView: KochavaTracker.KVAEventType
+ @objc public static let checkoutStart: KochavaTracker.KVAEventType
+ @objc public static let consentGranted: KochavaTracker.KVAEventType
+ @objc public static let custom: KochavaTracker.KVAEventType
+ @objc public static let deeplink: KochavaTracker.KVAEventType
+ @objc public static let levelComplete: KochavaTracker.KVAEventType
+ @objc public static let purchase: KochavaTracker.KVAEventType
+ @objc public static let pushOpened: KochavaTracker.KVAEventType
+ @objc public static let pushReceived: KochavaTracker.KVAEventType
+ @objc public static let rating: KochavaTracker.KVAEventType
+ @objc public static let registrationComplete: KochavaTracker.KVAEventType
+ @objc public static let search: KochavaTracker.KVAEventType
+ @objc public static let startTrial: KochavaTracker.KVAEventType
+ @objc public static let subscribe: KochavaTracker.KVAEventType
+ @objc public static let tutorialComplete: KochavaTracker.KVAEventType
+ @objc public static let view: KochavaTracker.KVAEventType
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public let nameString: Swift.String
+ @objc deinit
+}
+@available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+extension AppTrackingTransparency.ATTrackingManager.AuthorizationStatus {
+ @available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+ public func kva_authorizationStatusString() -> Swift.String
+ public static func kva_from(_ object: Any?) -> AppTrackingTransparency.ATTrackingManager.AuthorizationStatus?
+}
+@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider, KochavaCore.KVANetworkingSetterProvider {
+ @objc override required dynamic public init()
+ @objc(initWithType:) public init(type: KochavaTracker.KVAEventType)
+ @available(*, deprecated, renamed: "init(type:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]")
+ @objc(eventWithType:) public static func event(withType type: KochavaTracker.KVAEventType) -> Self
+ @objc(initWithTypeNameString:) convenience public init(typeNameString: Swift.String)
+ @available(*, deprecated, renamed: "init(typeNameString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]")
+ @objc(eventWithTypeNameString:) public static func event(withTypeNameString typeNameString: Swift.String) -> Self
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ final public func execute()
+ @objc final public func send()
+ @objc(sendWithSenderArray:) final public func send(senderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "send(senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func send(senderArray:) instead.")
+ @nonobjc final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc final public func eventNameString() -> Swift.String
+ @objc(valueObjectForPropertyIdentifier:) final public func valueObject(forPropertyIdentifier propertyIdentifier: KochavaTracker.KVAEvent.PropertyIdentifier?) -> Swift.AnyObject?
+ public typealias PropertyIdentifier = Swift.String
+ @objc final public func subURLIdString() -> Swift.String?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var eventType: KochavaTracker.KVAEventType {
+ get
+ }
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var sendAsyncBool: Swift.Bool
+ @objc final public var sendLogMessagePrintBool: Swift.Bool
+ @objc final public var serviceLocallyBool: Swift.Bool {
+ @objc get
+ @objc set(serviceLocallyBool)
+ }
+ @objc final public var actionString: Swift.String?
+ @objc final public var adCampaignIdString: Swift.String?
+ @objc final public var adCampaignNameString: Swift.String?
+ @objc final public var adDeviceTypeString: Swift.String?
+ @objc final public var adGroupIdString: Swift.String?
+ @objc final public var adGroupNameString: Swift.String?
+ @objc final public var adMediationNameString: Swift.String?
+ @objc final public var adNetworkNameString: Swift.String?
+ @objc final public var adPlacementString: Swift.String?
+ @objc final public var adSizeString: Swift.String?
+ @objc final public var adTypeString: Swift.String?
+ @objc final public var appleWatchBool: Swift.Bool
+ @objc final public var appleWatchIdString: Swift.String?
+ @objc final public var appStoreReceiptBase64EncodedString: Swift.String?
+ @objc final public var backgroundBoolNumber: Foundation.NSNumber?
+ @objc final public var checkoutAsGuestString: Swift.String?
+ @objc final public var completedBoolNumber: Foundation.NSNumber?
+ @objc final public var consent: KochavaCore.KVAConsent? {
+ @objc get
+ @objc set(consent)
+ }
+ @objc final public var contentIdString: Swift.String?
+ @objc final public var contentTypeString: Swift.String?
+ @objc final public var currencyString: Swift.String?
+ @objc final public var customEventName: KochavaTracker.KVAEvent.CustomEventName?
+ @available(*, deprecated, renamed: "customEventName")
+ @objc final public var customEventNameString: KochavaTracker.KVAEvent.CustomEventName?
+ public typealias CustomEventName = Swift.String
+ @objc final public var date: Foundation.Date?
+ @objc final public var dateString: Swift.String?
+ @objc final public var descriptionString: Swift.String?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var durationTimeIntervalNumber: Foundation.NSNumber?
+ @objc final public var endDate: Foundation.Date?
+ @objc final public var endDateString: Swift.String?
+ @objc final public var infoDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(infoDictionary)
+ }
+ @objc final public var infoString: Swift.String?
+ @objc final public var itemAddedFromString: Swift.String?
+ @objc final public var levelString: Swift.String?
+ @objc final public var maxRatingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var nameString: Swift.String?
+ @objc final public var orderIdString: Swift.String?
+ @objc final public var originString: Swift.String?
+ @objc final public var payloadDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(payloadDictionary)
+ }
+ @objc final public var priceDecimalNumber: Foundation.NSDecimalNumber?
+ @objc final public var priceDoubleNumber: Foundation.NSNumber?
+ @objc final public var quantityDoubleNumber: Foundation.NSNumber?
+ @objc final public var ratingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var receiptIdString: Swift.String?
+ @objc final public var referralFromString: Swift.String?
+ @objc final public var registrationMethodString: Swift.String?
+ @objc final public var resultsString: Swift.String?
+ @objc final public var scoreString: Swift.String?
+ @objc final public var searchTermString: Swift.String?
+ @objc final public var sourceString: Swift.String?
+ @objc final public var spatialXDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialYDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialZDoubleNumber: Foundation.NSNumber?
+ @objc final public var startDate: Foundation.Date?
+ @objc final public var startDateString: Swift.String?
+ @objc final public var successString: Swift.String?
+ @objc final public var userIdString: Swift.String?
+ @objc final public var uriString: Swift.String?
+ @objc final public var userNameString: Swift.String?
+ @objc final public var validatedString: Swift.String?
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetwork) final public class KVAAdNetwork : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @objc get
+ @objc set(conversion)
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRegisterAppForAttribution: KochavaTracker.KVAAdNetwork.Closure_DidRegisterAppForAttribution? {
+ @objc get
+ @objc set(closure_didRegisterAppForAttribution)
+ }
+ @available(*, deprecated, renamed: "closure_didRegisterAppForAttribution")
+ @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetworkDidRegisterAppForAttributionBlock? {
+ @objc get
+ @objc set(didRegisterAppForAttributionBlock)
+ }
+ public typealias Closure_DidRegisterAppForAttribution = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppLimitAdTracking) final public class KVAAppLimitAdTracking : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc(boolean) final public var bool: Swift.Bool {
+ @objc get
+ @objc set(bool)
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppTrackingTransparency) final public class KVAAppTrackingTransparency : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+ @objc(authorizationDidCompleteWithStatus:) final public func authorizationDidComplete(status: AppTrackingTransparency.ATTrackingManager.AuthorizationStatus)
+ @available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+ @available(*, deprecated, renamed: "authorizationDidComplete(status:)", message: "Modern Objective-C-style method deprecated. Use Swift func authorizationDidComplete(status:) instead.")
+ @nonobjc final public func authorizationDidComplete(withStatus status: AppTrackingTransparency.ATTrackingManager.AuthorizationStatus)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var autoRequestTrackingAuthorizationBool: Swift.Bool {
+ @objc get
+ @objc set(autoRequestTrackingAuthorizationBool)
+ }
+ @objc final public var authorizationStatusWaitTimeInterval: Foundation.TimeInterval {
+ @objc get
+ @objc set(authorizationStatusWaitTimeInterval)
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+ @objc final public var authorizationStatusString: Swift.String? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAttribution) final public class KVAAttribution : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(closure_didComplete: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
+ @objc final public var result: KochavaTracker.KVAAttributionResult {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRetrieveResult: KochavaTracker.KVAAttribution.Closure_DidRetrieveResult? {
+ @objc get
+ @objc set(closure_didRetrieveResult)
+ }
+ public typealias Closure_DidRetrieveResult = (_ attribution: KochavaTracker.KVAAttribution, _ attributionResult: KochavaTracker.KVAAttributionResult) -> Swift.Void
+ @objc final public var retrieveResultBool: Swift.Bool {
+ @objc get
+ @objc set(retrieveResultBool)
+ }
+ @objc deinit
+}
+@_hasMissingDesignatedInitializers @objc(KVAAttributionResult) final public class KVAAttributionResult : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var attributedBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var firstInstallBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public let rawDictionary: [Swift.AnyHashable : Any]?
+ @objc final public var retrievedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVACustomIdentifiers) final public class KVACustomIdentifiers : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVACustomIdentifiers.Name, identifier: KochavaTracker.KVACustomIdentifiers.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(processWithURL:closure_didComplete:) public static func process(url: Foundation.URL?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:")
+ @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:processor:closure_didComplete:) public static func process(url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:")
+ @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:processor:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ public typealias Closure_Process_DidComplete = (_ deeplink: KochavaTracker.KVADeeplink) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var urlString: Swift.String?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var rawDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(rawDictionary)
+ }
+ @objc deinit
+}
+@objc public protocol KVADeeplinksProcessor {
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+}
+@objc public protocol KVADeeplinksProcessorProvider {
+ @objc var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplinks) final public class KVADeeplinks : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessor, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc(augmentDeferredPrefetchWithName:identifier:) final public func augmentDeferredPrefetch(name: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchName, identifier: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchIdentifier)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias AugmentDeferredPrefetchName = Swift.String
+ public typealias AugmentDeferredPrefetchIdentifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeviceId) final public class KVADeviceId : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var string: Swift.String? {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAEvents) final public class KVAEvents : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVAEventSender, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc final public func send(event: KochavaTracker.KVAEvent)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversion) final public class KVAAdNetworkConversion : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didUpdatePostbackValue: KochavaTracker.KVAAdNetworkConversion.Closure_DidUpdatePostbackValue? {
+ @objc get
+ @objc set(closure_didUpdatePostbackValue)
+ }
+ @available(*, deprecated, renamed: "closure_didUpdatePostbackValue")
+ @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversionDidUpdateValueBlock? {
+ @objc get
+ @objc set(didUpdateValueBlock)
+ }
+ public typealias Closure_DidUpdatePostbackValue = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
+ @objc final public var result: KochavaTracker.KVAAdNetworkConversionResult {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVAIdentityLink.Name, identifier: KochavaTracker.KVAIdentityLink.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAInstall) final public class KVAInstall : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var didStartFirstDate: Foundation.Date? {
+ @objc get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversionResult) final public class KVAAdNetworkConversionResult : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc final public func valueInt() -> Swift.Int
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @available(iOS 16.0, iOSApplicationExtension 16.0, *)
+ @objc final public var coarseValue: StoreKit.SKAdNetwork.CoarseConversionValue? {
+ @objc get
+ }
+ @objc final public var error: Swift.Error? {
+ @objc get
+ }
+ @objc final public var modelString: Swift.String? {
+ @objc get
+ }
+ final public var translatedValueInt: KochavaTracker.KVAAdNetworkConversionResult.TranslatedValueInt? {
+ get
+ }
+ @objc final public var translatedValueIntNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ public typealias TranslatedValueInt = Swift.Int
+ @objc final public var rawValueNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAPushNotifications) final public class KVAPushNotifications : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAMutable, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaTracker.KVAPushNotificationsTokenRegistrar, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerGeneral) final public class KVATrackerGeneral : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public let instanceCreatedDate: Foundation.Date
+ public static let startSequenceDidCompleteNotificationName: Foundation.Notification.Name
+}
+@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(registerWithData:) public static func register(data: Foundation.Data)
+ @available(*, deprecated, renamed: "register(data:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:) instead.")
+ public static func register(withData data: Foundation.Data)
+ @objc(registerWithData:registrarArray:) public static func register(data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(data:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:registrarArray:) instead.")
+ public static func register(withData data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @objc(registerWithDataHexString:) public static func register(dataHexString: Swift.String)
+ @available(*, deprecated, renamed: "register(dataHexString:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String)
+ @objc(registerWithDataHexString:registrarArray:) public static func register(dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(dataHexString:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:registrarArray:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public let data: Foundation.Data?
+ @objc final public let providedDate: Foundation.Date?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc deinit
+}
+@objc public protocol KVAPushNotificationsTokenRegistrar {
+ @objc(registerToken:) func register(token: KochavaTracker.KVAPushNotificationsToken)
+}
+@objc public protocol KVAPushNotificationsTokenRegistrarProvider {
+ @objc var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaCore.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider, KochavaCore.KVAStartable, KochavaCore.KVAStartableWithOptions, KochavaCore.KVAStoppable, KochavaCore.KVAStoppableWithOptions {
+ @objc public static var shared: KochavaTracker.KVATracker {
+ @objc get
+ }
+ @objc public static var shared_optional: KochavaTracker.KVATracker? {
+ @objc get
+ }
+ @objc public static var sharedInstance: Swift.AnyObject {
+ @objc get
+ }
+ @objc override convenience dynamic public init()
+ @objc(initWithStorageIdentifier:) required public init(storageIdentifier: KochavaCore.KVANetworking.StorageIdentifier?)
+ @available(*, deprecated, renamed: "init()", message: "Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.")
+ @objc(tracker) public static func tracker() -> Self
+ @available(*, deprecated, renamed: "init(storageIdentifier:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.")
+ @objc(trackerWithStorageIdString:) public static func tracker(withStorageIdString storageIdString: Swift.String?) -> Self
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc(configureWith:context:) final public func configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(startWithAppGUIDString:) final public func start(withAppGUIDString appGUIDString: Swift.String)
+ @objc(startWithPartnerNameString:) final public func start(withPartnerNameString partnerNameString: Swift.String)
+ @objc final public func start()
+ @objc final public func start(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func stop()
+ @objc final public func stop(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func invalidate()
+ @objc final public func invalidate(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public var adNetwork: KochavaTracker.KVAAdNetwork {
+ @objc get
+ }
+ @objc final public var appLimitAdTracking: KochavaTracker.KVAAppLimitAdTracking {
+ @objc get
+ }
+ @objc final public var appTrackingTransparency: KochavaTracker.KVAAppTrackingTransparency {
+ @objc get
+ }
+ @objc final public var attribution: KochavaTracker.KVAAttribution {
+ @objc get
+ }
+ @objc final public var config: KochavaTracker.KVATrackerConfig {
+ @objc get
+ }
+ @objc final public var customIdentifiers: KochavaTracker.KVACustomIdentifiers {
+ @objc get
+ }
+ @objc final public var deeplinks: KochavaTracker.KVADeeplinks {
+ @objc get
+ }
+ @objc final public var deviceId: KochavaTracker.KVADeviceId {
+ @objc get
+ }
+ final public var events: KochavaTracker.KVAEvents {
+ get
+ }
+ @objc final public var general: KochavaTracker.KVATrackerGeneral {
+ @objc get
+ }
+ @objc final public var identityLink: KochavaTracker.KVAIdentityLink {
+ @objc get
+ }
+ @objc final public var install: KochavaTracker.KVAInstall {
+ @objc get
+ }
+ @objc final public var networking: KochavaCore.KVANetworking {
+ @objc get
+ }
+ @objc final public var pushNotifications: KochavaTracker.KVAPushNotifications {
+ @objc get
+ }
+ @available(*, deprecated, renamed: "appLimitAdTracking.bool", message: "Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.")
+ @objc final public var appLimitAdTrackingBool: Swift.Bool {
+ @objc get
+ @objc set(appLimitAdTrackingBool)
+ }
+ @available(*, deprecated, renamed: "deviceId.string", message: "Convenience wrapper function deprecated. Use var deviceId.string instead.")
+ @objc final public var deviceIdString: Swift.String? {
+ @objc get
+ }
+ @objc final public var privacy: KochavaCore.KVAPrivacy {
+ @objc get
+ }
+ @objc final public var sleepBool: Swift.Bool {
+ @objc get
+ @objc set(sleepBool)
+ }
+ @objc final public var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? {
+ @objc get
+ }
+ @objc final public var eventSender: KochavaTracker.KVAEventSender {
+ @objc get
+ }
+ @objc final public var privacyProfileRegistrar: KochavaCore.KVAPrivacyProfileRegistrar {
+ @objc get
+ }
+ @objc final public var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc public static var sharedStorageIdentifier: KochavaCore.KVANetworking.StorageIdentifier? {
+ @objc get
+ @objc set(sharedStorageIdentifier)
+ }
+ @available(*, deprecated, renamed: "sharedStorageIdentifier", message: "Use sharedStorageIdentifier instead.")
+ @objc public static var sharedStorageIdString: Swift.String? {
+ @objc get
+ @objc set(sharedStorageIdString)
+ }
+ @objc final public var startedBool: Swift.Bool {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerConfig) final public class KVATrackerConfig : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveWithClosure_didComplete:) final public func retrieve(closure_didComplete: @escaping KochavaTracker.KVATrackerConfig.Closure_Retrieve_DidComplete)
+ public typealias Closure_Retrieve_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didComplete: KochavaTracker.KVATrackerConfig.Closure_DidComplete? {
+ @objc get
+ @objc set(closure_didComplete)
+ }
+ public typealias Closure_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ @objc final public var consentGDPRAppliesBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var collectedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+extension Foundation.Date {
+ public func kva_sendDateString(fromRequestBodyDictionary requestBodyDictionary: [Swift.AnyHashable : Any]?) -> Swift.String
+}
+@available(iOS 16.0, *)
+extension StoreKit.SKAdNetwork.CoarseConversionValue {
+ @available(iOS 16.0, *)
+ public func kva_identifier() -> Swift.String
+ public static func kva_from(_ object: Any?) -> StoreKit.SKAdNetwork.CoarseConversionValue?
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appStoreReceiptDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var architectureStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryStateStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var bootDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var carrierNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var cellularTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func deviceLimitAdTrackingBool() -> Swift.Bool
+ final public var deviceModelStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceOrientationStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceSystemNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var iabUSPrivacyStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idctDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func idfaString() -> Swift.String?
+ final public var idfaStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idfvStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var ipAddressStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var localTimezoneNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var minimumOSVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public var networkConnectionTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osGenuineBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var platformNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var userAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var volumeNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var vpnBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var webViewUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent {
+ @objc(sendCustomWithEventName:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "sendCustom(eventName:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.")
+ @objc(sendCustomWithNameString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @objc(sendCustomWithEventName:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.")
+ @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoDictionary:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @objc(sendCustomWithEventName:infoDictionary:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoString:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.")
+ @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @objc(sendCustomWithEventName:infoString:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(initCustomWithEventName:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "init(customWithEventName:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]")
+ @objc(customEventWithNameString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName) -> Self
+ @objc(initCustomWithEventName:infoDictionary:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoDictionary:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]")
+ @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
+ @objc(initCustomWithEventName:infoString:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]")
+ @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?) -> Self
+}
+@_inheritsConvenienceInitializers @objc(KVATrackerProduct) final public class KVATrackerProduct : ObjectiveC.NSObject, KochavaCore.KVASharedPropertyProvider {
+ @objc public static let shared: KochavaCore.KVAProduct
+ public static var sharedInstance: Swift.AnyObject {
+ get
+ }
+ @objc override dynamic public init()
+ @objc deinit
+}
+@objc public protocol KVAEventSender {
+ @objc(sendEvent:) func send(event: KochavaTracker.KVAEvent)
+}
+@objc public protocol KVAEventSenderProvider {
+ @objc var eventSender: KochavaTracker.KVAEventSender { get }
+}
diff --git a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc
similarity index 50%
rename from KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-simulator.swiftdoc
rename to KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc
index 39f6ea8..0bea4df 100644
Binary files a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc differ
diff --git a/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftinterface b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftinterface
new file mode 100644
index 0000000..0bed93e
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftinterface
@@ -0,0 +1,863 @@
+// swift-interface-format-version: 1.0
+// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
+// swift-module-flags: -target arm64-apple-ios12.4 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name KochavaTracker
+// swift-module-flags-ignorable: -enable-bare-slash-regex
+import AVFoundation
+import AdServices
+import AdSupport
+import AppTrackingTransparency
+import CoreTelephony
+import DeviceCheck
+import Foundation
+import JavaScriptCore
+import KochavaCore
+@_exported import KochavaTracker
+import StoreKit
+import Swift
+import SystemConfiguration
+import UIKit
+import UserNotifications
+import WebKit
+import _Concurrency
+import _StringProcessing
+@_hasMissingDesignatedInitializers @objc(KVAEventType) final public class KVAEventType : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ @objc public static let achievement: KochavaTracker.KVAEventType
+ @objc public static let adClick: KochavaTracker.KVAEventType
+ @objc public static let addToCart: KochavaTracker.KVAEventType
+ @objc public static let addToWishList: KochavaTracker.KVAEventType
+ @objc public static let adView: KochavaTracker.KVAEventType
+ @objc public static let checkoutStart: KochavaTracker.KVAEventType
+ @objc public static let consentGranted: KochavaTracker.KVAEventType
+ @objc public static let custom: KochavaTracker.KVAEventType
+ @objc public static let deeplink: KochavaTracker.KVAEventType
+ @objc public static let levelComplete: KochavaTracker.KVAEventType
+ @objc public static let purchase: KochavaTracker.KVAEventType
+ @objc public static let pushOpened: KochavaTracker.KVAEventType
+ @objc public static let pushReceived: KochavaTracker.KVAEventType
+ @objc public static let rating: KochavaTracker.KVAEventType
+ @objc public static let registrationComplete: KochavaTracker.KVAEventType
+ @objc public static let search: KochavaTracker.KVAEventType
+ @objc public static let startTrial: KochavaTracker.KVAEventType
+ @objc public static let subscribe: KochavaTracker.KVAEventType
+ @objc public static let tutorialComplete: KochavaTracker.KVAEventType
+ @objc public static let view: KochavaTracker.KVAEventType
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public let nameString: Swift.String
+ @objc deinit
+}
+@available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+extension AppTrackingTransparency.ATTrackingManager.AuthorizationStatus {
+ @available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+ public func kva_authorizationStatusString() -> Swift.String
+ public static func kva_from(_ object: Any?) -> AppTrackingTransparency.ATTrackingManager.AuthorizationStatus?
+}
+@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider, KochavaCore.KVANetworkingSetterProvider {
+ @objc override required dynamic public init()
+ @objc(initWithType:) public init(type: KochavaTracker.KVAEventType)
+ @available(*, deprecated, renamed: "init(type:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]")
+ @objc(eventWithType:) public static func event(withType type: KochavaTracker.KVAEventType) -> Self
+ @objc(initWithTypeNameString:) convenience public init(typeNameString: Swift.String)
+ @available(*, deprecated, renamed: "init(typeNameString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]")
+ @objc(eventWithTypeNameString:) public static func event(withTypeNameString typeNameString: Swift.String) -> Self
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ final public func execute()
+ @objc final public func send()
+ @objc(sendWithSenderArray:) final public func send(senderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "send(senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func send(senderArray:) instead.")
+ @nonobjc final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc final public func eventNameString() -> Swift.String
+ @objc(valueObjectForPropertyIdentifier:) final public func valueObject(forPropertyIdentifier propertyIdentifier: KochavaTracker.KVAEvent.PropertyIdentifier?) -> Swift.AnyObject?
+ public typealias PropertyIdentifier = Swift.String
+ @objc final public func subURLIdString() -> Swift.String?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var eventType: KochavaTracker.KVAEventType {
+ get
+ }
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var sendAsyncBool: Swift.Bool
+ @objc final public var sendLogMessagePrintBool: Swift.Bool
+ @objc final public var serviceLocallyBool: Swift.Bool {
+ @objc get
+ @objc set(serviceLocallyBool)
+ }
+ @objc final public var actionString: Swift.String?
+ @objc final public var adCampaignIdString: Swift.String?
+ @objc final public var adCampaignNameString: Swift.String?
+ @objc final public var adDeviceTypeString: Swift.String?
+ @objc final public var adGroupIdString: Swift.String?
+ @objc final public var adGroupNameString: Swift.String?
+ @objc final public var adMediationNameString: Swift.String?
+ @objc final public var adNetworkNameString: Swift.String?
+ @objc final public var adPlacementString: Swift.String?
+ @objc final public var adSizeString: Swift.String?
+ @objc final public var adTypeString: Swift.String?
+ @objc final public var appleWatchBool: Swift.Bool
+ @objc final public var appleWatchIdString: Swift.String?
+ @objc final public var appStoreReceiptBase64EncodedString: Swift.String?
+ @objc final public var backgroundBoolNumber: Foundation.NSNumber?
+ @objc final public var checkoutAsGuestString: Swift.String?
+ @objc final public var completedBoolNumber: Foundation.NSNumber?
+ @objc final public var consent: KochavaCore.KVAConsent? {
+ @objc get
+ @objc set(consent)
+ }
+ @objc final public var contentIdString: Swift.String?
+ @objc final public var contentTypeString: Swift.String?
+ @objc final public var currencyString: Swift.String?
+ @objc final public var customEventName: KochavaTracker.KVAEvent.CustomEventName?
+ @available(*, deprecated, renamed: "customEventName")
+ @objc final public var customEventNameString: KochavaTracker.KVAEvent.CustomEventName?
+ public typealias CustomEventName = Swift.String
+ @objc final public var date: Foundation.Date?
+ @objc final public var dateString: Swift.String?
+ @objc final public var descriptionString: Swift.String?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var durationTimeIntervalNumber: Foundation.NSNumber?
+ @objc final public var endDate: Foundation.Date?
+ @objc final public var endDateString: Swift.String?
+ @objc final public var infoDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(infoDictionary)
+ }
+ @objc final public var infoString: Swift.String?
+ @objc final public var itemAddedFromString: Swift.String?
+ @objc final public var levelString: Swift.String?
+ @objc final public var maxRatingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var nameString: Swift.String?
+ @objc final public var orderIdString: Swift.String?
+ @objc final public var originString: Swift.String?
+ @objc final public var payloadDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(payloadDictionary)
+ }
+ @objc final public var priceDecimalNumber: Foundation.NSDecimalNumber?
+ @objc final public var priceDoubleNumber: Foundation.NSNumber?
+ @objc final public var quantityDoubleNumber: Foundation.NSNumber?
+ @objc final public var ratingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var receiptIdString: Swift.String?
+ @objc final public var referralFromString: Swift.String?
+ @objc final public var registrationMethodString: Swift.String?
+ @objc final public var resultsString: Swift.String?
+ @objc final public var scoreString: Swift.String?
+ @objc final public var searchTermString: Swift.String?
+ @objc final public var sourceString: Swift.String?
+ @objc final public var spatialXDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialYDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialZDoubleNumber: Foundation.NSNumber?
+ @objc final public var startDate: Foundation.Date?
+ @objc final public var startDateString: Swift.String?
+ @objc final public var successString: Swift.String?
+ @objc final public var userIdString: Swift.String?
+ @objc final public var uriString: Swift.String?
+ @objc final public var userNameString: Swift.String?
+ @objc final public var validatedString: Swift.String?
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetwork) final public class KVAAdNetwork : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @objc get
+ @objc set(conversion)
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRegisterAppForAttribution: KochavaTracker.KVAAdNetwork.Closure_DidRegisterAppForAttribution? {
+ @objc get
+ @objc set(closure_didRegisterAppForAttribution)
+ }
+ @available(*, deprecated, renamed: "closure_didRegisterAppForAttribution")
+ @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetworkDidRegisterAppForAttributionBlock? {
+ @objc get
+ @objc set(didRegisterAppForAttributionBlock)
+ }
+ public typealias Closure_DidRegisterAppForAttribution = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppLimitAdTracking) final public class KVAAppLimitAdTracking : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc(boolean) final public var bool: Swift.Bool {
+ @objc get
+ @objc set(bool)
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppTrackingTransparency) final public class KVAAppTrackingTransparency : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+ @objc(authorizationDidCompleteWithStatus:) final public func authorizationDidComplete(status: AppTrackingTransparency.ATTrackingManager.AuthorizationStatus)
+ @available(iOS 14.0, macOS 11.0, macCatalyst 14.0, tvOS 14.0, iOSApplicationExtension 14.0, *)
+ @available(*, deprecated, renamed: "authorizationDidComplete(status:)", message: "Modern Objective-C-style method deprecated. Use Swift func authorizationDidComplete(status:) instead.")
+ @nonobjc final public func authorizationDidComplete(withStatus status: AppTrackingTransparency.ATTrackingManager.AuthorizationStatus)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var autoRequestTrackingAuthorizationBool: Swift.Bool {
+ @objc get
+ @objc set(autoRequestTrackingAuthorizationBool)
+ }
+ @objc final public var authorizationStatusWaitTimeInterval: Foundation.TimeInterval {
+ @objc get
+ @objc set(authorizationStatusWaitTimeInterval)
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+ @objc final public var authorizationStatusString: Swift.String? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAttribution) final public class KVAAttribution : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(closure_didComplete: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
+ @objc final public var result: KochavaTracker.KVAAttributionResult {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRetrieveResult: KochavaTracker.KVAAttribution.Closure_DidRetrieveResult? {
+ @objc get
+ @objc set(closure_didRetrieveResult)
+ }
+ public typealias Closure_DidRetrieveResult = (_ attribution: KochavaTracker.KVAAttribution, _ attributionResult: KochavaTracker.KVAAttributionResult) -> Swift.Void
+ @objc final public var retrieveResultBool: Swift.Bool {
+ @objc get
+ @objc set(retrieveResultBool)
+ }
+ @objc deinit
+}
+@_hasMissingDesignatedInitializers @objc(KVAAttributionResult) final public class KVAAttributionResult : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var attributedBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var firstInstallBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public let rawDictionary: [Swift.AnyHashable : Any]?
+ @objc final public var retrievedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVACustomIdentifiers) final public class KVACustomIdentifiers : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVACustomIdentifiers.Name, identifier: KochavaTracker.KVACustomIdentifiers.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(processWithURL:closure_didComplete:) public static func process(url: Foundation.URL?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:")
+ @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:processor:closure_didComplete:) public static func process(url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:")
+ @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:processor:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ public typealias Closure_Process_DidComplete = (_ deeplink: KochavaTracker.KVADeeplink) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var urlString: Swift.String?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var rawDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(rawDictionary)
+ }
+ @objc deinit
+}
+@objc public protocol KVADeeplinksProcessor {
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+}
+@objc public protocol KVADeeplinksProcessorProvider {
+ @objc var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplinks) final public class KVADeeplinks : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessor, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc(augmentDeferredPrefetchWithName:identifier:) final public func augmentDeferredPrefetch(name: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchName, identifier: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchIdentifier)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias AugmentDeferredPrefetchName = Swift.String
+ public typealias AugmentDeferredPrefetchIdentifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeviceId) final public class KVADeviceId : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var string: Swift.String? {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAEvents) final public class KVAEvents : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVAEventSender, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc final public func send(event: KochavaTracker.KVAEvent)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversion) final public class KVAAdNetworkConversion : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didUpdatePostbackValue: KochavaTracker.KVAAdNetworkConversion.Closure_DidUpdatePostbackValue? {
+ @objc get
+ @objc set(closure_didUpdatePostbackValue)
+ }
+ @available(*, deprecated, renamed: "closure_didUpdatePostbackValue")
+ @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversionDidUpdateValueBlock? {
+ @objc get
+ @objc set(didUpdateValueBlock)
+ }
+ public typealias Closure_DidUpdatePostbackValue = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
+ @objc final public var result: KochavaTracker.KVAAdNetworkConversionResult {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVAIdentityLink.Name, identifier: KochavaTracker.KVAIdentityLink.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAInstall) final public class KVAInstall : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var didStartFirstDate: Foundation.Date? {
+ @objc get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversionResult) final public class KVAAdNetworkConversionResult : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc final public func valueInt() -> Swift.Int
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @available(iOS 16.0, iOSApplicationExtension 16.0, *)
+ @objc final public var coarseValue: StoreKit.SKAdNetwork.CoarseConversionValue? {
+ @objc get
+ }
+ @objc final public var error: Swift.Error? {
+ @objc get
+ }
+ @objc final public var modelString: Swift.String? {
+ @objc get
+ }
+ final public var translatedValueInt: KochavaTracker.KVAAdNetworkConversionResult.TranslatedValueInt? {
+ get
+ }
+ @objc final public var translatedValueIntNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ public typealias TranslatedValueInt = Swift.Int
+ @objc final public var rawValueNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAPushNotifications) final public class KVAPushNotifications : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAMutable, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaTracker.KVAPushNotificationsTokenRegistrar, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerGeneral) final public class KVATrackerGeneral : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public let instanceCreatedDate: Foundation.Date
+ public static let startSequenceDidCompleteNotificationName: Foundation.Notification.Name
+}
+@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(registerWithData:) public static func register(data: Foundation.Data)
+ @available(*, deprecated, renamed: "register(data:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:) instead.")
+ public static func register(withData data: Foundation.Data)
+ @objc(registerWithData:registrarArray:) public static func register(data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(data:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:registrarArray:) instead.")
+ public static func register(withData data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @objc(registerWithDataHexString:) public static func register(dataHexString: Swift.String)
+ @available(*, deprecated, renamed: "register(dataHexString:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String)
+ @objc(registerWithDataHexString:registrarArray:) public static func register(dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(dataHexString:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:registrarArray:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public let data: Foundation.Data?
+ @objc final public let providedDate: Foundation.Date?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc deinit
+}
+@objc public protocol KVAPushNotificationsTokenRegistrar {
+ @objc(registerToken:) func register(token: KochavaTracker.KVAPushNotificationsToken)
+}
+@objc public protocol KVAPushNotificationsTokenRegistrarProvider {
+ @objc var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaCore.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider, KochavaCore.KVAStartable, KochavaCore.KVAStartableWithOptions, KochavaCore.KVAStoppable, KochavaCore.KVAStoppableWithOptions {
+ @objc public static var shared: KochavaTracker.KVATracker {
+ @objc get
+ }
+ @objc public static var shared_optional: KochavaTracker.KVATracker? {
+ @objc get
+ }
+ @objc public static var sharedInstance: Swift.AnyObject {
+ @objc get
+ }
+ @objc override convenience dynamic public init()
+ @objc(initWithStorageIdentifier:) required public init(storageIdentifier: KochavaCore.KVANetworking.StorageIdentifier?)
+ @available(*, deprecated, renamed: "init()", message: "Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.")
+ @objc(tracker) public static func tracker() -> Self
+ @available(*, deprecated, renamed: "init(storageIdentifier:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.")
+ @objc(trackerWithStorageIdString:) public static func tracker(withStorageIdString storageIdString: Swift.String?) -> Self
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc(configureWith:context:) final public func configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(startWithAppGUIDString:) final public func start(withAppGUIDString appGUIDString: Swift.String)
+ @objc(startWithPartnerNameString:) final public func start(withPartnerNameString partnerNameString: Swift.String)
+ @objc final public func start()
+ @objc final public func start(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func stop()
+ @objc final public func stop(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func invalidate()
+ @objc final public func invalidate(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public var adNetwork: KochavaTracker.KVAAdNetwork {
+ @objc get
+ }
+ @objc final public var appLimitAdTracking: KochavaTracker.KVAAppLimitAdTracking {
+ @objc get
+ }
+ @objc final public var appTrackingTransparency: KochavaTracker.KVAAppTrackingTransparency {
+ @objc get
+ }
+ @objc final public var attribution: KochavaTracker.KVAAttribution {
+ @objc get
+ }
+ @objc final public var config: KochavaTracker.KVATrackerConfig {
+ @objc get
+ }
+ @objc final public var customIdentifiers: KochavaTracker.KVACustomIdentifiers {
+ @objc get
+ }
+ @objc final public var deeplinks: KochavaTracker.KVADeeplinks {
+ @objc get
+ }
+ @objc final public var deviceId: KochavaTracker.KVADeviceId {
+ @objc get
+ }
+ final public var events: KochavaTracker.KVAEvents {
+ get
+ }
+ @objc final public var general: KochavaTracker.KVATrackerGeneral {
+ @objc get
+ }
+ @objc final public var identityLink: KochavaTracker.KVAIdentityLink {
+ @objc get
+ }
+ @objc final public var install: KochavaTracker.KVAInstall {
+ @objc get
+ }
+ @objc final public var networking: KochavaCore.KVANetworking {
+ @objc get
+ }
+ @objc final public var pushNotifications: KochavaTracker.KVAPushNotifications {
+ @objc get
+ }
+ @available(*, deprecated, renamed: "appLimitAdTracking.bool", message: "Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.")
+ @objc final public var appLimitAdTrackingBool: Swift.Bool {
+ @objc get
+ @objc set(appLimitAdTrackingBool)
+ }
+ @available(*, deprecated, renamed: "deviceId.string", message: "Convenience wrapper function deprecated. Use var deviceId.string instead.")
+ @objc final public var deviceIdString: Swift.String? {
+ @objc get
+ }
+ @objc final public var privacy: KochavaCore.KVAPrivacy {
+ @objc get
+ }
+ @objc final public var sleepBool: Swift.Bool {
+ @objc get
+ @objc set(sleepBool)
+ }
+ @objc final public var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? {
+ @objc get
+ }
+ @objc final public var eventSender: KochavaTracker.KVAEventSender {
+ @objc get
+ }
+ @objc final public var privacyProfileRegistrar: KochavaCore.KVAPrivacyProfileRegistrar {
+ @objc get
+ }
+ @objc final public var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc public static var sharedStorageIdentifier: KochavaCore.KVANetworking.StorageIdentifier? {
+ @objc get
+ @objc set(sharedStorageIdentifier)
+ }
+ @available(*, deprecated, renamed: "sharedStorageIdentifier", message: "Use sharedStorageIdentifier instead.")
+ @objc public static var sharedStorageIdString: Swift.String? {
+ @objc get
+ @objc set(sharedStorageIdString)
+ }
+ @objc final public var startedBool: Swift.Bool {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerConfig) final public class KVATrackerConfig : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveWithClosure_didComplete:) final public func retrieve(closure_didComplete: @escaping KochavaTracker.KVATrackerConfig.Closure_Retrieve_DidComplete)
+ public typealias Closure_Retrieve_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didComplete: KochavaTracker.KVATrackerConfig.Closure_DidComplete? {
+ @objc get
+ @objc set(closure_didComplete)
+ }
+ public typealias Closure_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ @objc final public var consentGDPRAppliesBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var collectedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+extension Foundation.Date {
+ public func kva_sendDateString(fromRequestBodyDictionary requestBodyDictionary: [Swift.AnyHashable : Any]?) -> Swift.String
+}
+@available(iOS 16.0, *)
+extension StoreKit.SKAdNetwork.CoarseConversionValue {
+ @available(iOS 16.0, *)
+ public func kva_identifier() -> Swift.String
+ public static func kva_from(_ object: Any?) -> StoreKit.SKAdNetwork.CoarseConversionValue?
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appStoreReceiptDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var architectureStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryStateStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var bootDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var carrierNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var cellularTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func deviceLimitAdTrackingBool() -> Swift.Bool
+ final public var deviceModelStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceOrientationStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceSystemNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var iabUSPrivacyStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idctDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func idfaString() -> Swift.String?
+ final public var idfaStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idfvStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var ipAddressStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var localTimezoneNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var minimumOSVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public var networkConnectionTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osGenuineBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var platformNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var userAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var volumeNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var vpnBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var webViewUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent {
+ @objc(sendCustomWithEventName:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "sendCustom(eventName:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.")
+ @objc(sendCustomWithNameString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @objc(sendCustomWithEventName:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.")
+ @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoDictionary:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @objc(sendCustomWithEventName:infoDictionary:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoString:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.")
+ @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @objc(sendCustomWithEventName:infoString:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(initCustomWithEventName:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "init(customWithEventName:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]")
+ @objc(customEventWithNameString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName) -> Self
+ @objc(initCustomWithEventName:infoDictionary:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoDictionary:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]")
+ @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
+ @objc(initCustomWithEventName:infoString:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]")
+ @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?) -> Self
+}
+@_inheritsConvenienceInitializers @objc(KVATrackerProduct) final public class KVATrackerProduct : ObjectiveC.NSObject, KochavaCore.KVASharedPropertyProvider {
+ @objc public static let shared: KochavaCore.KVAProduct
+ public static var sharedInstance: Swift.AnyObject {
+ get
+ }
+ @objc override dynamic public init()
+ @objc deinit
+}
+@objc public protocol KVAEventSender {
+ @objc(sendEvent:) func send(event: KochavaTracker.KVAEvent)
+}
+@objc public protocol KVAEventSenderProvider {
+ @objc var eventSender: KochavaTracker.KVAEventSender { get }
+}
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Modules/module.modulemap b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/module.modulemap
similarity index 72%
rename from KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Modules/module.modulemap
rename to KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/module.modulemap
index 363dd10..b58301e 100644
--- a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Modules/module.modulemap
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/Modules/module.modulemap
@@ -6,6 +6,6 @@ framework module KochavaTracker {
}
module KochavaTracker.Swift {
- header "KochavaTracker-Swift.h"
- requires objc
+ header "KochavaTracker-Swift.h"
+ requires objc
}
diff --git a/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/_CodeSignature/CodeResources b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/_CodeSignature/CodeResources
new file mode 100644
index 0000000..056b038
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64/KochavaTracker.framework/_CodeSignature/CodeResources
@@ -0,0 +1,223 @@
+
+
+
+
+ files
+
+ Headers/KVAAdNetwork.h
+
+ e/aFZWZ/qMo5dvS0SILYONhyOqo=
+
+ Headers/KVAAdNetworkConversion.h
+
+ fSte8Kjx8cuIckvKn9pAaXCSA5o=
+
+ Headers/KVADeeplink.h
+
+ ZYAYYyqh6/Zown3xcx785m/ZOVU=
+
+ Headers/KochavaTracker-Swift.h
+
+ YF49Tpi1HDs/z9QO0vZRe9myjK8=
+
+ Headers/KochavaTracker.h
+
+ Pqbmpf6kEI6iJvPiFgQPEDK4IQ0=
+
+ Info.plist
+
+ 0duxUZBRAMbGdP3cq3Z7l3YOCl4=
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.abi.json
+
+ CFpH32wrM6zTxkbCdc6iZZxrrZs=
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.private.swiftinterface
+
+ clRqwcyp86Rq5TCafFwqe+ElcAk=
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc
+
+ nu68qYo4i/yZmA376ziV8ekxwGY=
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftinterface
+
+ clRqwcyp86Rq5TCafFwqe+ElcAk=
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftmodule
+
+ r07Ixs09YEUY+MGw1w93+RAWQxQ=
+
+ Modules/module.modulemap
+
+ D0ZlNJ3LzwuUC9tH79i+WsY8dew=
+
+
+ files2
+
+ Headers/KVAAdNetwork.h
+
+ hash2
+
+ A1JT5uXvdgYu01Sj4vkSfuJRGASFX3UV6rMyAzK/sXI=
+
+
+ Headers/KVAAdNetworkConversion.h
+
+ hash2
+
+ HvbHvqzgv8GDHBYqz4JOm7+2BE3wfaN4CbEziBiIn2A=
+
+
+ Headers/KVADeeplink.h
+
+ hash2
+
+ IRDMDdWy0bW6OF7IVV/Ewd2HmvuYUVP58FTaCgrOZQc=
+
+
+ Headers/KochavaTracker-Swift.h
+
+ hash2
+
+ PyWJ4BjMJhPYPyYP5B/BHcgFiEVijkT386HhyOY9M4k=
+
+
+ Headers/KochavaTracker.h
+
+ hash2
+
+ 9NNIfzfl2KT5Ghx+wcolXYkv8hGV0yWvb77DZMSAAm8=
+
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.abi.json
+
+ hash2
+
+ KfmEFSKO1J7UigCoz8nyPFBXrDBQjimm3ZPclG6Mvds=
+
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.private.swiftinterface
+
+ hash2
+
+ R3/6matx0KyOqPECuhgnCdKN87k7XyFb4DsS6pxFdvU=
+
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc
+
+ hash2
+
+ /a6+z0pn5XFHfGuXO+lr+Vn8W9t61ueRXZOPT2usURs=
+
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftinterface
+
+ hash2
+
+ R3/6matx0KyOqPECuhgnCdKN87k7XyFb4DsS6pxFdvU=
+
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftmodule
+
+ hash2
+
+ 8il8nzJNgDsHId909MTGP+emeadfp6Pzuegptw6G0eA=
+
+
+ Modules/module.modulemap
+
+ hash2
+
+ PVF4hEB09E+RftHxTVBy0DCtPTii5k/JiXbs7JFOd9w=
+
+
+
+ rules
+
+ ^.*
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^version.plist$
+
+
+ rules2
+
+ .*\.dSYM($|/)
+
+ weight
+ 11
+
+ ^(.*/)?\.DS_Store$
+
+ omit
+
+ weight
+ 2000
+
+ ^.*
+
+ ^.*\.lproj/
+
+ optional
+
+ weight
+ 1000
+
+ ^.*\.lproj/locversion.plist$
+
+ omit
+
+ weight
+ 1100
+
+ ^Base\.lproj/
+
+ weight
+ 1010
+
+ ^Info\.plist$
+
+ omit
+
+ weight
+ 20
+
+ ^PkgInfo$
+
+ omit
+
+ weight
+ 20
+
+ ^embedded\.provisionprofile$
+
+ weight
+ 20
+
+ ^version\.plist$
+
+ weight
+ 20
+
+
+
+
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h b/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
deleted file mode 100644
index 1b4b798..0000000
--- a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
+++ /dev/null
@@ -1,47 +0,0 @@
-//
-// KVAAdNetworkConversion.h
-// KochavaAdNetwork
-//
-// Created by John Bushnell on 8/20/20.
-// Copyright © 2020 - 2022 Kochava, Inc. All rights reserved.
-//
-
-
-
-#ifndef KVAAdNetworkConversion_h
-#define KVAAdNetworkConversion_h
-
-
-
-#pragma mark - CLASS
-
-
-
-@class KVAAdNetworkConversion;
-@class KVAAdNetworkConversionResult;
-
-
-
-#pragma mark - Typealiases
-
-
-
-/*!
- @typedef KVAAdNetworkConversionDidUpdateValueBlock
-
- @brief A closure which is called when the SKAdNetwork updateConversionValue API has been called.
-
- @discussion Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
- */
-typedef void (^ KVAAdNetworkConversionDidUpdateValueBlock)
-(
- KVAAdNetworkConversion * _Nonnull conversion,
- KVAAdNetworkConversionResult * _Nonnull result
-);
-
-
-
-#endif
-
-
-
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/KochavaTracker b/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/KochavaTracker
deleted file mode 100755
index 21d861f..0000000
Binary files a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/KochavaTracker and /dev/null differ
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc b/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc
deleted file mode 100644
index 9ed490d..0000000
Binary files a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ
diff --git a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h b/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
deleted file mode 100644
index 1b4b798..0000000
--- a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
+++ /dev/null
@@ -1,47 +0,0 @@
-//
-// KVAAdNetworkConversion.h
-// KochavaAdNetwork
-//
-// Created by John Bushnell on 8/20/20.
-// Copyright © 2020 - 2022 Kochava, Inc. All rights reserved.
-//
-
-
-
-#ifndef KVAAdNetworkConversion_h
-#define KVAAdNetworkConversion_h
-
-
-
-#pragma mark - CLASS
-
-
-
-@class KVAAdNetworkConversion;
-@class KVAAdNetworkConversionResult;
-
-
-
-#pragma mark - Typealiases
-
-
-
-/*!
- @typedef KVAAdNetworkConversionDidUpdateValueBlock
-
- @brief A closure which is called when the SKAdNetwork updateConversionValue API has been called.
-
- @discussion Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
- */
-typedef void (^ KVAAdNetworkConversionDidUpdateValueBlock)
-(
- KVAAdNetworkConversion * _Nonnull conversion,
- KVAAdNetworkConversionResult * _Nonnull result
-);
-
-
-
-#endif
-
-
-
diff --git a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/KochavaTracker b/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/KochavaTracker
deleted file mode 100755
index c5b82bd..0000000
Binary files a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/KochavaTracker and /dev/null differ
diff --git a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/i386-apple-ios-simulator.swiftdoc b/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/i386-apple-ios-simulator.swiftdoc
deleted file mode 100644
index a0d0fd8..0000000
Binary files a/KochavaTracker.xcframework/ios-arm64_i386_x86_64-simulator/KochavaTracker.framework/Modules/KochavaTracker.swiftmodule/i386-apple-ios-simulator.swiftdoc and /dev/null differ
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetwork.h b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetwork.h
index 6ddf972..7f3dedb 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetwork.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetwork.h
@@ -1,9 +1,9 @@
//
// KVAAdNetwork.h
-// KochavaAdNetwork
+// KochavaTracker
//
// Created by John Bushnell on 8/20/20.
-// Copyright © 2020 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2020 - 2023 Kochava, Inc. All rights reserved.
//
@@ -33,7 +33,7 @@
typedef void (^ KVAAdNetworkDidRegisterAppForAttributionBlock)
(
KVAAdNetwork * _Nonnull adNetwork
-);
+ ) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVAAdNetwork.Closure_DidRegisterAppForAttribution'. Use 'KVAAdNetwork.Closure_DidRegisterAppForAttribution' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull adNetwork) = ^(KVAAdNetwork * _Nonnull adNetwork) { /* ... */ };");
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetworkConversion.h b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetworkConversion.h
index 1b4b798..66ae9c8 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetworkConversion.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVAAdNetworkConversion.h
@@ -1,9 +1,9 @@
//
// KVAAdNetworkConversion.h
-// KochavaAdNetwork
+// KochavaTracker
//
// Created by John Bushnell on 8/20/20.
-// Copyright © 2020 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2020 - 2023 Kochava, Inc. All rights reserved.
//
@@ -29,7 +29,7 @@
/*!
@typedef KVAAdNetworkConversionDidUpdateValueBlock
- @brief A closure which is called when the SKAdNetwork updateConversionValue API has been called.
+ @brief A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
@discussion Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
*/
@@ -37,7 +37,7 @@ typedef void (^ KVAAdNetworkConversionDidUpdateValueBlock)
(
KVAAdNetworkConversion * _Nonnull conversion,
KVAAdNetworkConversionResult * _Nonnull result
-);
+ ) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue'. Use 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) = ^(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) { /* ... */ };");
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVADeeplink.h b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVADeeplink.h
index 9769ba6..78a3763 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVADeeplink.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KVADeeplink.h
@@ -3,7 +3,7 @@
// KochavaTracker
//
// Created by John Bushnell on 10/14/19.
-// Copyright © 2019 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2019 - 2023 Kochava, Inc. All rights reserved.
//
@@ -33,7 +33,7 @@
typedef void (^ KVADeeplinkProcessCompletionHandler)
(
KVADeeplink * _Nonnull deeplink
-);
+) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVADeeplink.Closure_Process_DidComplete'. Use 'KVADeeplink.Closure_Process_DidComplete' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_process_didComplete)(KVADeeplink * _Nonnull deeplink) = ^(KVADeeplink * _Nonnull deeplink) { /* ... */ };");
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker-Swift.h b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker-Swift.h
index 0a72893..6f63284 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker-Swift.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker-Swift.h
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
-// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
+// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
#ifndef KOCHAVATRACKER_SWIFT_H
#define KOCHAVATRACKER_SWIFT_H
#pragma clang diagnostic push
@@ -23,11 +23,20 @@
# include
#endif
+#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
+#if defined(__OBJC__)
#include
+#endif
+#if defined(__cplusplus)
+#include
+#include
+#include
+#else
#include
#include
#include
+#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
@@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
#endif
+#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
+#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
@@ -193,17 +204,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_EXTERN extern
# endif
#endif
+#if !defined(SWIFT_CALL)
+# define SWIFT_CALL __attribute__((swiftcall))
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT noexcept
+#endif
+#else
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT
+#endif
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_CXX_INT_DEFINED)
+#define SWIFT_CXX_INT_DEFINED
+namespace swift {
+using Int = ptrdiff_t;
+using UInt = size_t;
+}
+#endif
+#endif
+#if defined(__OBJC__)
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import Foundation;
@import JavaScriptCore;
+@import KochavaCore;
@import ObjectiveC;
+@import StoreKit;
#endif
#import
+#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
@@ -211,6 +247,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
+#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
@@ -219,17 +256,21 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# pragma pop_macro("any")
#endif
+#if defined(__OBJC__)
@class KVAAdNetworkConversion;
/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
SWIFT_CLASS_NAMED("KVAAdNetwork")
@interface KVAAdNetwork : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
-/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didRegisterAppForAttributionBlock)(KVAAdNetwork * _Nonnull);
/// The current conversion information.
@property (nonatomic, strong) KVAAdNetworkConversion * _Nonnull conversion;
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull);
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkDidRegisterAppForAttributionBlock _Nullable didRegisterAppForAttributionBlock SWIFT_DEPRECATED_MSG("", "closure_didRegisterAppForAttribution");
@end
@class KVAAdNetworkConversionResult;
@@ -239,9 +280,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversion")
@interface KVAAdNetworkConversion : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A closure which is called when the SKAdNetwork updateConversionValue API has been called.
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didUpdateValueBlock)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+@property (nonatomic, copy) KVAAdNetworkConversionDidUpdateValueBlock _Nullable didUpdateValueBlock SWIFT_DEPRECATED_MSG("", "closure_didUpdatePostbackValue");
/// The current conversion result.
/// This object will mutate when the current result is updated. If you want a immutable picture then you should take a copy.
@property (nonatomic, strong) KVAAdNetworkConversionResult * _Nonnull result;
@@ -256,6 +300,14 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionEvent")
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
+
+/// A class which defines the parameters for the adnetwork conversion lock window.
+SWIFT_CLASS_NAMED("KVAAdNetworkConversionLockWindow")
+@interface KVAAdNetworkConversionLockWindow : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+@end
+
@class KVAContext;
@class NSString;
@class NSNumber;
@@ -267,9 +319,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionResult")
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
-/// Return the conversion value integer which is used with the SKAdNetwork updateConversionValue API.
+/// Return the conversion value integer which is used with the SKAdNetwork updatePostbackConversionValue API.
/// Apple currently restricts this value to 6-bits. This is a combination (OR) of the translated value (translatedValueIntNumber) with any extension interval value (extensionIntervalTranslatedValueInt.integerValue).
- (NSInteger)valueInt SWIFT_WARN_UNUSED_RESULT;
+/// The coarse value.
+@property (nonatomic, readonly) SKAdNetworkCoarseConversionValue _Nullable coarseValue SWIFT_AVAILABILITY(ios_app_extension,introduced=16.0) SWIFT_AVAILABILITY(ios,introduced=16.0);
+@property (nonatomic, readonly) NSError * _Nullable error;
/// A string which represents the model used for the conversion.
@property (nonatomic, readonly, copy) NSString * _Nullable modelString;
@property (nonatomic, readonly, strong) NSNumber * _Nullable translatedValueIntNumber;
@@ -323,22 +378,6 @@ SWIFT_CLASS_NAMED("KVAAppleSearchAds")
@end
-/// A feature which provides for attribution through Apple’s Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2")
-@interface KVAAppleSearchAdsMethod2 : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-/// Apple’s attribution as provided by Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2Attribution")
-@interface KVAAppleSearchAdsMethod2Attribution : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
/// A feature which provides for attribution through Apple’s Apple Search Ads method 3.
SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod3")
@interface KVAAppleSearchAdsMethod3 : NSObject
@@ -361,17 +400,17 @@ SWIFT_CLASS_NAMED("KVAAttribution")
@interface KVAAttribution : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Get the attribution result with a completion handler.
-/// \param completionHandler A completion handler to call once the result has been retrieved.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
///
-- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))completionHandler;
+- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))closure_didComplete;
+/// The current attribution result.
+/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(closure_didComplete:)
+@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
/// A closure which is called when attribution is retrieved.
@property (nonatomic, copy) void (^ _Nullable closure_didRetrieveResult)(KVAAttribution * _Nonnull, KVAAttributionResult * _Nonnull);
/// A boolean indicating if an attribution result should be retrieved.
-/// This boolean does not need to be set if you are using func retrieveResult(withCompletionHandler:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
+/// This boolean does not need to be set if you are using func retrieveResult(closure_didComplete:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
@property (nonatomic) BOOL retrieveResultBool;
-/// The current attribution result.
-/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(withCompletionHandler:)
-@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
@end
@@ -398,25 +437,47 @@ SWIFT_CLASS_NAMED("KVACustomIdentifiers")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Register a custom identifier.
/// In order to send a custom identifier it must be whitelisted on your account.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register a custom identifier.
+/// In order to send a custom identifier it must be whitelisted on your account.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@class NSURL;
@protocol KVADeeplinksProcessorProvider;
+@class KVANetworking;
/// A deeplink.
SWIFT_CLASS_NAMED("KVADeeplink")
-@interface KVADeeplink : NSObject
+@interface KVADeeplink : NSObject
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:", "processWithURL:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -424,7 +485,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:", "processWithURL:timeoutTimeInterval:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -432,7 +501,17 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:", "processWithURL:processor:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -442,12 +521,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:", "processWithURL:timeoutTimeInterval:processor:closure_didComplete:");
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
/// The deeplink url as provided by the operating system.
@property (nonatomic, copy) NSString * _Nullable urlString;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
/// The destination for the deeplink.
@property (nonatomic, copy) NSString * _Nullable destinationString;
/// A dictionary containing raw information about the deeplink.
@@ -462,9 +544,9 @@ SWIFT_PROTOCOL("_TtP14KochavaTracker21KVADeeplinksProcessor_")
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -473,14 +555,20 @@ SWIFT_CLASS_NAMED("KVADeeplinks")
@interface KVADeeplinks : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+/// Augment deferred prefetch.
+/// \param name The name for the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)augmentDeferredPrefetchWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
/// Process a deeplink.
/// \param deeplink An instance of KVADeeplink.
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -508,13 +596,21 @@ SWIFT_CLASS_NAMED("KVADeviceId")
/// The class KVAEvent provides a means of defining a post-install event, providing standardized parameters.
SWIFT_CLASS_NAMED("KVAEvent")
-@interface KVAEvent : NSObject
+@interface KVAEvent : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Create an event.
+/// The designated initializer.
+/// \param type An event type.
+///
+- (nonnull instancetype)initWithType:(KVAEventType * _Nonnull)type OBJC_DESIGNATED_INITIALIZER;
/// Create an event with a type— using modern Objective-C syntax.
-+ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]", "init(type:)");
+/// Create an event with a typeNameString.
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
+- (nonnull instancetype)initWithTypeNameString:(NSString * _Nonnull)typeNameString;
/// Create an event with a typeNameString— using modern Objective-C syntax.
-/// For TVML. This constructor exists because there doesn’t appear to be a way to export an enumeration using the JSExport system Apple provides.
-+ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT;
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
++ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]", "init(typeNameString:)");
/// Return a description of the instance.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// Send the event using the default KVAEventSenderProvider.
@@ -525,24 +621,27 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// Return a string representation of the name of the event.
/// a.k.a. “event_name”
- (NSString * _Nonnull)eventNameString SWIFT_WARN_UNUSED_RESULT;
-/// Return any valueObject for a given propertyIdentifierString.
-/// \param propertyIdentifierString A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
+/// Return any valueObject for a given propertyIdentifier.
+/// \param propertyIdentifier A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
///
-- (id _Nullable)valueObjectForPropertyIdentifierString:(NSString * _Nullable)propertyIdentifierString SWIFT_WARN_UNUSED_RESULT;
+- (id _Nullable)valueObjectForPropertyIdentifier:(NSString * _Nullable)propertyIdentifier SWIFT_WARN_UNUSED_RESULT;
- (NSString * _Nullable)subURLIdString SWIFT_WARN_UNUSED_RESULT;
/// A type for the event
/// Although these types are standardized, custom events are designated using type .custom.
@property (nonatomic, readonly, strong) KVAEventType * _Nonnull eventType;
-/// A boolean indicating if a dispatch should occur when the event is sent.
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
+/// A boolean indicating if an asynchronous dispatch should occur when the event is sent.
/// Default true. The default behavior dispatches the sending of an event to the default queue that should be used when sending the event (i.e. KVADispatchQueue.globalSerial). If it is known that you are already on the appropriate queue, you may set this to true to avoid an additional dispatch. This can have the effect of fine tuning behavior to ensure that related operations essentially occur atomically. It is important to not use this feature if you are not on the appropriate queue already.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendDispatchBool;
+@property (nonatomic) BOOL sendAsyncBool;
/// A boolean indicating if a LogMessage should be printed when the event is sent.
/// Default true. The default behavior prints a log message when the event is sent. The corresponding log message is presented as though the event was sent by a call from the host. This boolean can be set to false so that the event will be sent silently, and not appear as though it was sent by a call the host.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendPrintLogMessageBool;
+@property (nonatomic) BOOL sendLogMessagePrintBool;
/// A boolean which when set will cause the event to be serviced locally when sent.
/// When serviced locally the response for the request is provided locally and the request is post the event to the server is never made. In every other respect the effects are the same. AdNetwork conversion information is still calculated.
@property (nonatomic) BOOL serviceLocallyBool;
@@ -608,8 +707,9 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSString * _Nullable currencyString;
/// A property containing a custom event name string.
-/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventNameString property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
-@property (nonatomic, copy) NSString * _Nullable customEventNameString;
+/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventName property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
+@property (nonatomic, copy) NSString * _Nullable customEventName;
+@property (nonatomic, copy) NSString * _Nullable customEventNameString SWIFT_DEPRECATED_MSG("", "customEventName");
/// A property containing a date.
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSDate * _Nullable date;
@@ -731,76 +831,114 @@ SWIFT_CLASS_NAMED("KVAEvent")
@interface KVAEvent (SWIFT_EXTENSION(KochavaTracker))
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString;
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.", "sendCustomWithEventName:");
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.", "sendCustomWithEventName:senderArray:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.", "sendCustomWithEventName:infoDictionary:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.", "sendCustomWithEventName:infoDictionary:senderArray:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.", "sendCustomWithEventName:infoString:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.", "sendCustomWithEventName:infoString:senderArray:");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]", "init(customWithEventName:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]", "init(customWithEventName:infoDictionary:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]", "init(customWithEventName:infoString:)");
@end
@@ -844,7 +982,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType
/// An event type which signifies that consent was granted.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull consentGranted;)
+ (KVAEventType * _Nonnull)consentGranted SWIFT_WARN_UNUSED_RESULT;
-/// An event type which signifies that a customEventNameString will be supplied.
+/// An event type which signifies that a customEventName will be supplied.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull custom;)
+ (KVAEventType * _Nonnull)custom SWIFT_WARN_UNUSED_RESULT;
/// An event type which signifies that there was a deep link.
@@ -908,11 +1046,19 @@ SWIFT_CLASS_NAMED("KVAIdentityLink")
/// Register an identity link.
/// note:
/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register an identity link.
+/// note:
+/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@@ -925,79 +1071,6 @@ SWIFT_CLASS_NAMED("KVAInstall")
@property (nonatomic, readonly, copy) NSDate * _Nullable didStartFirstDate;
@end
-@class KVAPrivacyProfile;
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker26KVAPrivacyProfileRegistrar_")
-@protocol KVAPrivacyProfileRegistrar
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-@end
-
-
-/// A feature which is responsible for privacy.
-SWIFT_CLASS_NAMED("KVAPrivacy")
-@interface KVAPrivacy : NSObject
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// Register a profile.
-/// \param profile The profile to register.
-///
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-/// Set a boolean indicating if the specified profile name is enabled.
-/// See method register(profile:).
-/// \param profileNameString The name of a profile.
-///
-/// \param enabledBool A boolean indicating if enabled.
-///
-- (void)setEnabledBoolForProfileNameString:(NSString * _Nonnull)profileNameString enabledBool:(BOOL)enabledBool;
-@end
-
-@protocol KVAPrivacyProfileRegistrarProvider;
-
-/// A privacy profile.
-SWIFT_CLASS_NAMED("KVAPrivacyProfile")
-@interface KVAPrivacyProfile : NSObject
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the privacy profile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacyProfile.
-///
-/// \param payloadKeyStringArray An array of datapoint identifiers.
-///
-/// \param payloadIdStringArray An array of payload identifiers.
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the KVAPrivacyProfile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray payloadIdStringArray:(NSArray * _Nullable)payloadIdStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A unique name string.
-@property (nonatomic, readonly, copy) NSString * _Nonnull nameString;
-/// An array of payload keys (datapoint identifiers).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadKeyStringArray;
-/// An array of payload identifiers (network transaction types).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadIdStringArray;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPrivacyProfileRegistrarProvider_")
-@protocol KVAPrivacyProfileRegistrarProvider
-/// A property which conforms to protocol KVAPrivacyProfileRegistrar.
-@property (nonatomic, readonly, strong) id _Nonnull privacyProfileRegistrar;
-@end
-
@class KVAPushNotificationsToken;
SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPushNotificationsTokenRegistrar_")
@@ -1020,32 +1093,35 @@ SWIFT_CLASS_NAMED("KVAPushNotifications")
/// A push notifications token.
SWIFT_CLASS_NAMED("KVAPushNotificationsToken")
-@interface KVAPushNotificationsToken : NSObject
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenData The device token as provided in Data.
-///
-+ (void)registerWithData:(NSData * _Nonnull)deviceTokenData;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenDataHexString The device token as provided as a data hex string.
+@interface KVAPushNotificationsToken : NSObject
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
///
-+ (void)registerWithDataHexString:(NSString * _Nonnull)deviceTokenDataHexString;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenData The device token as provided in Data.
++ (void)registerWithData:(NSData * _Nonnull)data;
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
///
/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
///
-+ (void)registerWithData:(NSData * _Nonnull)deviceTokenData registrarArray:(NSArray> * _Nullable)registrarArray;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenDataHexString The device token as provided as a data hex string.
++ (void)registerWithData:(NSData * _Nonnull)data registrarArray:(NSArray> * _Nullable)registrarArray;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
+///
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
///
/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
///
-+ (void)registerWithDataHexString:(NSString * _Nonnull)deviceTokenDataHexString registrarArray:(NSArray> * _Nullable)registrarArray;
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString registrarArray:(NSArray> * _Nullable)registrarArray;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
/// The token data as provided by the operating system.
@property (nonatomic, readonly, copy) NSData * _Nullable data;
/// The date that the token was provided by the operating system.
@property (nonatomic, readonly, copy) NSDate * _Nullable providedDate;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@@ -1075,14 +1151,15 @@ SWIFT_CLASS_NAMED("KVASessions")
@class KVATrackerConfig;
@class KVATrackerGeneral;
-@class KVANetworking;
+@class KVAPrivacy;
+@protocol KVAPrivacyProfileRegistrar;
/// The class KVATracker provides an interface between a host application and Kochava’s Attribution and Measurement servers.
SWIFT_CLASS_NAMED("KVATracker")
-@interface KVATracker : NSObject
+@interface KVATracker : NSObject
/// A shared instance, for convenience.
/// This is the preferred way of using a tracker. To complete the integration you must call func start(withAppGUIDString:)
or func start(withPartnerNameString:)
. You may alternatively use a constructor to create your own tracker. The shared instance simplifies your implementation as you do not need to store a tracker instance somewhere in a public location in your own code.
-/// By default this instance will use the default storage location equivalent to calling init(storageIdString:)
with storageIdString nil. If you wish to specify an alternative storage location, see var sharedStorageIdString
.
+/// By default this instance will use the default storage location equivalent to calling init(storageIdentifier:)
with storageIdentifier nil. If you wish to specify an alternative storage location, see var sharedStorageIdentifier
.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVATracker * _Nonnull shared;)
+ (KVATracker * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
/// A shared instance, for convenience— optional.
@@ -1109,12 +1186,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// \code
/// class MyClass
/// {
-/// let tracker = KVATracker(storageIdString: "alternate")
+/// let tracker = KVATracker(storageIdentifier: "alternate")
/// }
///
-/// \endcode\param storageIdString An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+/// \endcode\param storageIdentifier An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
///
-- (nonnull instancetype)initWithStorageIdString:(NSString * _Nullable)storageIdString OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)initWithStorageIdentifier:(NSString * _Nullable)storageIdentifier OBJC_DESIGNATED_INITIALIZER;
/// Create a tracker— using modern Objective-C syntax.
/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
/// note:
@@ -1123,9 +1200,19 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// \code
/// KVATracker *tracker = KVATracker.tracker;
///
-/// \endcodeFuture: @available(*, deprecated, renamed: “init()”)
-+ (nonnull instancetype)tracker SWIFT_WARN_UNUSED_RESULT;
-+ (nonnull instancetype)trackerWithStorageIdString:(NSString * _Nullable)storageIdString SWIFT_WARN_UNUSED_RESULT;
+/// \endcode
++ (nonnull instancetype)tracker SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.", "init()");
+/// Create a tracker— using modern Objective-C syntax.
+/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
+/// Example
+/// \code
+/// KVATracker *tracker = [KVATracker trackerWithStorageIdentifier:@"alternate"];
+///
+/// \endcodenote:
+/// This convenience constructor exists for Objective-C and is expected to be removed in a future version. In Swift you should use default constructor KVATracker(storageIdentifier:)— or preferably, the shared instance.
+/// \param storageIdString An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+///
++ (nonnull instancetype)trackerWithStorageIdString:(NSString * _Nullable)storageIdString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.", "init(storageIdentifier:)");
/// Configure the instance with an object.
/// This is the same method which is used to configure the instance when the config
response is returned from Kochava’s servers (aka kvinit). It can also be called from the host to change the defaults of various parameters (or else override them). The structure of the object you provide has the same capability as that which the server may return. Additionally you can wrap the parameters you provide in special objects with special keys $default$
, $default.append$
, $override$
, or $override.append$
, to indicate how these options are treated relative to the server’s options.
/// | Special Key | Treatment |
@@ -1183,23 +1270,43 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// Start the tracker.
/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
- (void)start;
-/// Return a description of the instance.
-@property (nonatomic, readonly, copy) NSString * _Nonnull description;
-/// Execute an advanced instruction.
-/// This function can be used to executed advanced instruction(s) for certain atypical use cases. You should only use this if instructed by your Kochava Client Success Manager.
-/// \param identifierString An identifier for the advanced instruction.
-///
-/// \param valueObject A value object for the advanced instruction.
-///
-- (void)executeAdvancedInstructionWithIdentifierString:(NSString * _Nonnull)identifierString valueObject:(id _Nullable)valueObject;
-/// Invalidate the instance.
+/// Start the tracker with advanced options.
+/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
+/// important:
+/// If you pass asyncBool as false, it becomes your responsibility to ensure that class KVASystem var shared func primarySystemStartDidExecuteOnMainThread() has been called prior to calling this method. The synchronous dispatch associated with this process can only be made after an asynchronous dispatch to ensure that no locks exist at the time, and so if you pass asyncBool as false it will be skipped here.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)startWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Stop the tracker.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+- (void)stop;
+/// Stop the tracker with advanced options.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)stopWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Invalidate the tracker.
/// When using this method with the shared instance, you are guaranteed to be re-defaulted a new instance the next time it is referenced, and you may immediately move forward to re-configure and start it.
- (void)invalidate;
-/// Invalidate the instance.
+/// Invalidate the tracker with advanced options.
/// See func invalidate()
-- (void)invalidateWithAsyncBool:(BOOL)asyncBool printLogMessageBool:(BOOL)printLogMessageBool;
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)invalidateWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Return a description of the instance.
+@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
-@property (nonatomic, readonly, strong) KVAAdNetwork * _Nullable adNetwork;
+@property (nonatomic, readonly, strong) KVAAdNetwork * _Nonnull adNetwork;
/// A feature which may be used to limit advertising tracking from the level of the application (or host).
@property (nonatomic, readonly, strong) KVAAppLimitAdTracking * _Nonnull appLimitAdTracking;
/// A feature which interfaces with Apple’s App Tracking Transparency system.
@@ -1209,14 +1316,11 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// A feature which is responsible for controlling and updating the configuration of the tracker.
/// This is sometimes referred to by the name of the backing service which provides the configuration, kvinit.
@property (nonatomic, readonly, strong) KVATrackerConfig * _Nonnull config;
-/// A feature which serves as an authority related to consent for the sharing of personal data.
-/// Data sharing privacy laws such as GDPR require consent to be obtained before certain kinds of personal data may be collected or calculated, kept in memory, persisted or retained in persistent storage, and/or shared with partners. During the natural lifecycle, there are times where partners may be added and cause the consent status to fall back to an unknown state. Later the user may again be prompted and the consent status may (or may not) again come to be known. All of this is predicated upon whether or not consent is required, which is governed by a variety of factors such as location.
-@property (nonatomic, readonly, strong) KVAConsent * _Nonnull consent;
/// A feature which is responsible for custom identifiers.
-/// Register a custom identifier by calling class KVACustomIdentifiers
func KVACustomIdentifiers/register(withNameString:identifierString:)
.
+/// Register a custom identifier by calling class KVACustomIdentifiers
func KVACustomIdentifiers/register(name:identifier:)
.
@property (nonatomic, readonly, strong) KVACustomIdentifiers * _Nonnull customIdentifiers;
/// A feature which measures deeplink activity.
-/// Create and process a basic deeplink (which is a wrapper for Apple’s url) by calling class KVADeeplink
func KVADeeplink/process(withURL:completionHandler:)
.
+/// Create and process a basic deeplink (which is a wrapper for Apple’s url) by calling class KVADeeplink
func KVADeeplink/process(url:closure_didComplete:)
.
@property (nonatomic, readonly, strong) KVADeeplinks * _Nonnull deeplinks;
/// A feature which is responsible for the identification of a device.
/// The managed id is referred to as the Kochava Device Id. Get the Kochava Device Id by getting class KVADeviceId
var KVADeviceId/string
.
@@ -1224,26 +1328,26 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// A feature which encapsulates all of the general aspects of a tracker not belonging to any other encapsulated features.
@property (nonatomic, readonly, strong) KVATrackerGeneral * _Nonnull general;
/// A feature which is responsible for linking identities.
-/// Register an identity link by calling class KVAIdentityLink
func KVAIdentityLink/register(withNameString:identifierString:)
.
+/// Register an identity link by calling class KVAIdentityLink
func KVAIdentityLink/register(name:identifier:)
.
@property (nonatomic, readonly, strong) KVAIdentityLink * _Nonnull identityLink;
/// A feature which provides information about the install.
/// The install is automatically sent to Kochava’s servers after starting the tracker, and after the retrieval of the tracker’s configuration in feature var config
.
@property (nonatomic, readonly, strong) KVAInstall * _Nonnull install;
/// A feature which provides networking support.
-/// The networking instance manages the exchange of data between the client and various server(s), along with the associated tasks, network transactions, adapters, and instructions. See class KVANetworking in module KochavaCore.
+/// The networking instance manages the exchange of data between the client and various server(s), along with the associated tasks, network transactions, and adapters. See class KVANetworking in module KochavaCore.
@property (nonatomic, readonly, strong) KVANetworking * _Nonnull networking;
-/// A feature which is responsible for privacy.
-/// Privacy profiles are automatically registered from the server. Alternatively create and register a privacy profile locally by calling class KVAPrivacyProfile
func KVAPrivacyProfile/register(withNameString:payloadKeyStringArray:)
. Enable (or explicitly disable) a profile by calling class KVAPrivacy
func KVAPrivacy/setEnabledBool(forProfileNameString:enabledBool:)
.
-@property (nonatomic, readonly, strong) KVAPrivacy * _Nonnull privacy;
/// A feature which provides for the measurement of push notifications.
-/// Create and register a push notifications token (which is a wrapper for Apple’s device token data) by calling class KVAPushNotificationsToken
func KVAPushNotificationsToken/register(withData:)
.
+/// Create and register a push notifications token (which is a wrapper for Apple’s device token data) by calling class KVAPushNotificationsToken
func KVAPushNotificationsToken/register(data:)
.
@property (nonatomic, readonly, strong) KVAPushNotifications * _Nonnull pushNotifications;
-/// A boolean which indicates if you want to limit ad tracking at the application level. This is a convenience variable which is equivalent to var appLimitAdTracking
func KVAAppLimitAdTracking/bool
.
+/// A boolean which indicates if you want to limit ad tracking at the application level. This is a convenience variable which is fully equivalent to, and interchangeable with, appLimitAdTracking
.KVAAppLimitAdTracking/bool
.
/// This feature is related to the Limit Ad Tracking feature which is typically found on an Apple device under Settings, Privacy, Advertising. In the same way that you can limit ad tracking through that setting, this feature provides a second and independent means for the host app to limit ad tracking by asking the user directly. A value of false from either this feature or Apple’s will result in the limiting of ad tracking.
-@property (nonatomic) BOOL appLimitAdTrackingBool;
-/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install (convenience). This is a convenience variable which is equivalent to var deviceId
func KVADeviceId/string
.
-@property (nonatomic, readonly, copy) NSString * _Nullable deviceIdString;
-/// A boolean which when true causes the instance to sleep. This is a convenience variable which is equivalent to var networking
func sleepBool.
+@property (nonatomic) BOOL appLimitAdTrackingBool SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.", "appLimitAdTracking.bool");
+/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install (convenience). This is a convenience variable which is fully equivalent to, and interchangeable with, deviceId
.KVADeviceId/string
.
+@property (nonatomic, readonly, copy) NSString * _Nullable deviceIdString SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use var deviceId.string instead.", "deviceId.string");
+/// A feature which is responsible for privacy, including intelligent consent. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.privacy.
+/// Privacy profiles are automatically registered from the server. Alternatively create and register a privacy profile locally by calling class KVAPrivacyProfile func KVAPrivacyProfile/register(name:payloadKeyStringArray:). Enable (or explicitly disable) a profile by calling class KVAPrivacy func KVAPrivacy/setEnabledBool(forProfileNameString:enabledBool:).
+@property (nonatomic, readonly, strong) KVAPrivacy * _Nonnull privacy;
+/// A boolean which when true causes the instance to sleep. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.sleepBool.
/// The default is false. When set to true, this causes tasks to effectively be suspended until this condition is lifted. While this is set to true, tasks are not lost per-say; however, if a task may have otherwise occurred multiple times, it may be represented only once once the condition is lifted.
@property (nonatomic) BOOL sleepBool;
@property (nonatomic, readonly, strong) id _Nullable deeplinksProcessor;
@@ -1252,9 +1356,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
@property (nonatomic, readonly, strong) id _Nonnull pushNotificationsTokenRegistrar;
/// A string used as a storage identifier for the shared instance.
/// This is used to further qualify where in persistent storage the information for this instance is stored. This property should not be used except in very specific circumstances. Please contact your client success representative if you are interested in using this. You would set this value to a short unique string consisting of regular alphanumeric characters.
-/// Following deployment with a given storage identifer this should never be changed except to represent an entirely new integration.
+/// Following deployment with a given storage identifier this should never be changed except to represent an entirely new integration.
/// If used, it is imperative that this value be consistently set prior to accessing the shared instance for the first time. You must make accommodations to set this as early as possible, where it would be prior to any access to var shared
throughout all of your code.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdString;)
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdentifier;)
++ (NSString * _Nullable)sharedStorageIdentifier SWIFT_WARN_UNUSED_RESULT;
++ (void)setSharedStorageIdentifier:(NSString * _Nullable)sharedStorageIdentifier;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdString SWIFT_DEPRECATED_MSG("Use sharedStorageIdentifier instead.", "sharedStorageIdentifier");)
+ (NSString * _Nullable)sharedStorageIdString SWIFT_WARN_UNUSED_RESULT;
+ (void)setSharedStorageIdString:(NSString * _Nullable)sharedStorageIdString;
/// A boolean indicating whether or not the instance has been started.
@@ -1270,6 +1377,15 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sha
SWIFT_CLASS_NAMED("KVATrackerConfig")
@interface KVATrackerConfig : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Get the config dictionary with a completion handler.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
+///
+- (void)retrieveWithClosure_didComplete:(void (^ _Nonnull)(KVATrackerConfig * _Nonnull))closure_didComplete;
+/// A closure which is called when attribution is retrieved.
+@property (nonatomic, copy) void (^ _Nullable closure_didComplete)(KVATrackerConfig * _Nonnull);
+@property (nonatomic, readonly) BOOL consentGDPRAppliesBool;
+/// A boolean indicating if the configuration has been collected from the server at least one time.
+@property (nonatomic, readonly) BOOL collectedBool;
@end
@@ -1322,6 +1438,9 @@ SWIFT_CLASS_NAMED("KVATrackerUpdates")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
+#endif
+#if defined(__cplusplus)
+#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
@@ -1329,7 +1448,7 @@ SWIFT_CLASS_NAMED("KVATrackerUpdates")
#endif
#elif defined(__x86_64__) && __x86_64__
-// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
+// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
#ifndef KOCHAVATRACKER_SWIFT_H
#define KOCHAVATRACKER_SWIFT_H
#pragma clang diagnostic push
@@ -1352,11 +1471,20 @@ SWIFT_CLASS_NAMED("KVATrackerUpdates")
# include
#endif
+#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
+#if defined(__OBJC__)
#include
+#endif
+#if defined(__cplusplus)
+#include
+#include
+#include
+#else
#include
#include
#include
+#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
@@ -1512,9 +1640,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
#endif
+#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
+#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
@@ -1522,17 +1652,42 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_EXTERN extern
# endif
#endif
+#if !defined(SWIFT_CALL)
+# define SWIFT_CALL __attribute__((swiftcall))
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT noexcept
+#endif
+#else
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT
+#endif
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_CXX_INT_DEFINED)
+#define SWIFT_CXX_INT_DEFINED
+namespace swift {
+using Int = ptrdiff_t;
+using UInt = size_t;
+}
+#endif
+#endif
+#if defined(__OBJC__)
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
#endif
@import Foundation;
@import JavaScriptCore;
+@import KochavaCore;
@import ObjectiveC;
+@import StoreKit;
#endif
#import
+#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
@@ -1540,6 +1695,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
+#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
@@ -1548,17 +1704,21 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# pragma pop_macro("any")
#endif
+#if defined(__OBJC__)
@class KVAAdNetworkConversion;
/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
SWIFT_CLASS_NAMED("KVAAdNetwork")
@interface KVAAdNetwork : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
-/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didRegisterAppForAttributionBlock)(KVAAdNetwork * _Nonnull);
/// The current conversion information.
@property (nonatomic, strong) KVAAdNetworkConversion * _Nonnull conversion;
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull);
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkDidRegisterAppForAttributionBlock _Nullable didRegisterAppForAttributionBlock SWIFT_DEPRECATED_MSG("", "closure_didRegisterAppForAttribution");
@end
@class KVAAdNetworkConversionResult;
@@ -1568,9 +1728,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversion")
@interface KVAAdNetworkConversion : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A closure which is called when the SKAdNetwork updateConversionValue API has been called.
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didUpdateValueBlock)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+@property (nonatomic, copy) void (^ _Nullable closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkConversionDidUpdateValueBlock _Nullable didUpdateValueBlock SWIFT_DEPRECATED_MSG("", "closure_didUpdatePostbackValue");
/// The current conversion result.
/// This object will mutate when the current result is updated. If you want a immutable picture then you should take a copy.
@property (nonatomic, strong) KVAAdNetworkConversionResult * _Nonnull result;
@@ -1585,6 +1748,14 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionEvent")
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
+
+/// A class which defines the parameters for the adnetwork conversion lock window.
+SWIFT_CLASS_NAMED("KVAAdNetworkConversionLockWindow")
+@interface KVAAdNetworkConversionLockWindow : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+@end
+
@class KVAContext;
@class NSString;
@class NSNumber;
@@ -1596,9 +1767,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionResult")
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
-/// Return the conversion value integer which is used with the SKAdNetwork updateConversionValue API.
+/// Return the conversion value integer which is used with the SKAdNetwork updatePostbackConversionValue API.
/// Apple currently restricts this value to 6-bits. This is a combination (OR) of the translated value (translatedValueIntNumber) with any extension interval value (extensionIntervalTranslatedValueInt.integerValue).
- (NSInteger)valueInt SWIFT_WARN_UNUSED_RESULT;
+/// The coarse value.
+@property (nonatomic, readonly) SKAdNetworkCoarseConversionValue _Nullable coarseValue SWIFT_AVAILABILITY(ios_app_extension,introduced=16.0) SWIFT_AVAILABILITY(ios,introduced=16.0);
+@property (nonatomic, readonly) NSError * _Nullable error;
/// A string which represents the model used for the conversion.
@property (nonatomic, readonly, copy) NSString * _Nullable modelString;
@property (nonatomic, readonly, strong) NSNumber * _Nullable translatedValueIntNumber;
@@ -1652,22 +1826,6 @@ SWIFT_CLASS_NAMED("KVAAppleSearchAds")
@end
-/// A feature which provides for attribution through Apple’s Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2")
-@interface KVAAppleSearchAdsMethod2 : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-/// Apple’s attribution as provided by Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2Attribution")
-@interface KVAAppleSearchAdsMethod2Attribution : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
/// A feature which provides for attribution through Apple’s Apple Search Ads method 3.
SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod3")
@interface KVAAppleSearchAdsMethod3 : NSObject
@@ -1690,17 +1848,17 @@ SWIFT_CLASS_NAMED("KVAAttribution")
@interface KVAAttribution : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Get the attribution result with a completion handler.
-/// \param completionHandler A completion handler to call once the result has been retrieved.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
///
-- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))completionHandler;
+- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))closure_didComplete;
+/// The current attribution result.
+/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(closure_didComplete:)
+@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
/// A closure which is called when attribution is retrieved.
@property (nonatomic, copy) void (^ _Nullable closure_didRetrieveResult)(KVAAttribution * _Nonnull, KVAAttributionResult * _Nonnull);
/// A boolean indicating if an attribution result should be retrieved.
-/// This boolean does not need to be set if you are using func retrieveResult(withCompletionHandler:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
+/// This boolean does not need to be set if you are using func retrieveResult(closure_didComplete:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
@property (nonatomic) BOOL retrieveResultBool;
-/// The current attribution result.
-/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(withCompletionHandler:)
-@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
@end
@@ -1727,25 +1885,47 @@ SWIFT_CLASS_NAMED("KVACustomIdentifiers")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Register a custom identifier.
/// In order to send a custom identifier it must be whitelisted on your account.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register a custom identifier.
+/// In order to send a custom identifier it must be whitelisted on your account.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@class NSURL;
@protocol KVADeeplinksProcessorProvider;
+@class KVANetworking;
/// A deeplink.
SWIFT_CLASS_NAMED("KVADeeplink")
-@interface KVADeeplink : NSObject
+@interface KVADeeplink : NSObject
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:", "processWithURL:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -1753,7 +1933,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:", "processWithURL:timeoutTimeInterval:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -1761,7 +1949,17 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:", "processWithURL:processor:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -1771,12 +1969,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:", "processWithURL:timeoutTimeInterval:processor:closure_didComplete:");
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
/// The deeplink url as provided by the operating system.
@property (nonatomic, copy) NSString * _Nullable urlString;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
/// The destination for the deeplink.
@property (nonatomic, copy) NSString * _Nullable destinationString;
/// A dictionary containing raw information about the deeplink.
@@ -1791,9 +1992,9 @@ SWIFT_PROTOCOL("_TtP14KochavaTracker21KVADeeplinksProcessor_")
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -1802,14 +2003,20 @@ SWIFT_CLASS_NAMED("KVADeeplinks")
@interface KVADeeplinks : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+/// Augment deferred prefetch.
+/// \param name The name for the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)augmentDeferredPrefetchWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
/// Process a deeplink.
/// \param deeplink An instance of KVADeeplink.
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -1837,13 +2044,21 @@ SWIFT_CLASS_NAMED("KVADeviceId")
/// The class KVAEvent provides a means of defining a post-install event, providing standardized parameters.
SWIFT_CLASS_NAMED("KVAEvent")
-@interface KVAEvent : NSObject
+@interface KVAEvent : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Create an event.
+/// The designated initializer.
+/// \param type An event type.
+///
+- (nonnull instancetype)initWithType:(KVAEventType * _Nonnull)type OBJC_DESIGNATED_INITIALIZER;
/// Create an event with a type— using modern Objective-C syntax.
-+ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]", "init(type:)");
+/// Create an event with a typeNameString.
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
+- (nonnull instancetype)initWithTypeNameString:(NSString * _Nonnull)typeNameString;
/// Create an event with a typeNameString— using modern Objective-C syntax.
-/// For TVML. This constructor exists because there doesn’t appear to be a way to export an enumeration using the JSExport system Apple provides.
-+ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT;
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
++ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]", "init(typeNameString:)");
/// Return a description of the instance.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// Send the event using the default KVAEventSenderProvider.
@@ -1854,24 +2069,27 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// Return a string representation of the name of the event.
/// a.k.a. “event_name”
- (NSString * _Nonnull)eventNameString SWIFT_WARN_UNUSED_RESULT;
-/// Return any valueObject for a given propertyIdentifierString.
-/// \param propertyIdentifierString A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
+/// Return any valueObject for a given propertyIdentifier.
+/// \param propertyIdentifier A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
///
-- (id _Nullable)valueObjectForPropertyIdentifierString:(NSString * _Nullable)propertyIdentifierString SWIFT_WARN_UNUSED_RESULT;
+- (id _Nullable)valueObjectForPropertyIdentifier:(NSString * _Nullable)propertyIdentifier SWIFT_WARN_UNUSED_RESULT;
- (NSString * _Nullable)subURLIdString SWIFT_WARN_UNUSED_RESULT;
/// A type for the event
/// Although these types are standardized, custom events are designated using type .custom.
@property (nonatomic, readonly, strong) KVAEventType * _Nonnull eventType;
-/// A boolean indicating if a dispatch should occur when the event is sent.
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
+/// A boolean indicating if an asynchronous dispatch should occur when the event is sent.
/// Default true. The default behavior dispatches the sending of an event to the default queue that should be used when sending the event (i.e. KVADispatchQueue.globalSerial). If it is known that you are already on the appropriate queue, you may set this to true to avoid an additional dispatch. This can have the effect of fine tuning behavior to ensure that related operations essentially occur atomically. It is important to not use this feature if you are not on the appropriate queue already.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendDispatchBool;
+@property (nonatomic) BOOL sendAsyncBool;
/// A boolean indicating if a LogMessage should be printed when the event is sent.
/// Default true. The default behavior prints a log message when the event is sent. The corresponding log message is presented as though the event was sent by a call from the host. This boolean can be set to false so that the event will be sent silently, and not appear as though it was sent by a call the host.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendPrintLogMessageBool;
+@property (nonatomic) BOOL sendLogMessagePrintBool;
/// A boolean which when set will cause the event to be serviced locally when sent.
/// When serviced locally the response for the request is provided locally and the request is post the event to the server is never made. In every other respect the effects are the same. AdNetwork conversion information is still calculated.
@property (nonatomic) BOOL serviceLocallyBool;
@@ -1937,8 +2155,9 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSString * _Nullable currencyString;
/// A property containing a custom event name string.
-/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventNameString property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
-@property (nonatomic, copy) NSString * _Nullable customEventNameString;
+/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventName property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
+@property (nonatomic, copy) NSString * _Nullable customEventName;
+@property (nonatomic, copy) NSString * _Nullable customEventNameString SWIFT_DEPRECATED_MSG("", "customEventName");
/// A property containing a date.
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSDate * _Nullable date;
@@ -2060,76 +2279,114 @@ SWIFT_CLASS_NAMED("KVAEvent")
@interface KVAEvent (SWIFT_EXTENSION(KochavaTracker))
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString;
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.", "sendCustomWithEventName:");
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.", "sendCustomWithEventName:senderArray:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.", "sendCustomWithEventName:infoDictionary:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.", "sendCustomWithEventName:infoDictionary:senderArray:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.", "sendCustomWithEventName:infoString:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.", "sendCustomWithEventName:infoString:senderArray:");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]", "init(customWithEventName:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]", "init(customWithEventName:infoDictionary:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]", "init(customWithEventName:infoString:)");
@end
@@ -2173,7 +2430,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType
/// An event type which signifies that consent was granted.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull consentGranted;)
+ (KVAEventType * _Nonnull)consentGranted SWIFT_WARN_UNUSED_RESULT;
-/// An event type which signifies that a customEventNameString will be supplied.
+/// An event type which signifies that a customEventName will be supplied.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull custom;)
+ (KVAEventType * _Nonnull)custom SWIFT_WARN_UNUSED_RESULT;
/// An event type which signifies that there was a deep link.
@@ -2237,11 +2494,19 @@ SWIFT_CLASS_NAMED("KVAIdentityLink")
/// Register an identity link.
/// note:
/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register an identity link.
+/// note:
+/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@@ -2254,79 +2519,6 @@ SWIFT_CLASS_NAMED("KVAInstall")
@property (nonatomic, readonly, copy) NSDate * _Nullable didStartFirstDate;
@end
-@class KVAPrivacyProfile;
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker26KVAPrivacyProfileRegistrar_")
-@protocol KVAPrivacyProfileRegistrar
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-@end
-
-
-/// A feature which is responsible for privacy.
-SWIFT_CLASS_NAMED("KVAPrivacy")
-@interface KVAPrivacy : NSObject
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// Register a profile.
-/// \param profile The profile to register.
-///
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-/// Set a boolean indicating if the specified profile name is enabled.
-/// See method register(profile:).
-/// \param profileNameString The name of a profile.
-///
-/// \param enabledBool A boolean indicating if enabled.
-///
-- (void)setEnabledBoolForProfileNameString:(NSString * _Nonnull)profileNameString enabledBool:(BOOL)enabledBool;
-@end
-
-@protocol KVAPrivacyProfileRegistrarProvider;
-
-/// A privacy profile.
-SWIFT_CLASS_NAMED("KVAPrivacyProfile")
-@interface KVAPrivacyProfile : NSObject
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the privacy profile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacyProfile.
-///
-/// \param payloadKeyStringArray An array of datapoint identifiers.
-///
-/// \param payloadIdStringArray An array of payload identifiers.
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the KVAPrivacyProfile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray payloadIdStringArray:(NSArray * _Nullable)payloadIdStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A unique name string.
-@property (nonatomic, readonly, copy) NSString * _Nonnull nameString;
-/// An array of payload keys (datapoint identifiers).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadKeyStringArray;
-/// An array of payload identifiers (network transaction types).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadIdStringArray;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPrivacyProfileRegistrarProvider_")
-@protocol KVAPrivacyProfileRegistrarProvider
-/// A property which conforms to protocol KVAPrivacyProfileRegistrar.
-@property (nonatomic, readonly, strong) id _Nonnull privacyProfileRegistrar;
-@end
-
@class KVAPushNotificationsToken;
SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPushNotificationsTokenRegistrar_")
@@ -2349,32 +2541,35 @@ SWIFT_CLASS_NAMED("KVAPushNotifications")
/// A push notifications token.
SWIFT_CLASS_NAMED("KVAPushNotificationsToken")
-@interface KVAPushNotificationsToken : NSObject
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenData The device token as provided in Data.
-///
-+ (void)registerWithData:(NSData * _Nonnull)deviceTokenData;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenDataHexString The device token as provided as a data hex string.
+@interface KVAPushNotificationsToken : NSObject
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
///
-+ (void)registerWithDataHexString:(NSString * _Nonnull)deviceTokenDataHexString;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenData The device token as provided in Data.
++ (void)registerWithData:(NSData * _Nonnull)data;
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
///
/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
///
-+ (void)registerWithData:(NSData * _Nonnull)deviceTokenData registrarArray:(NSArray> * _Nullable)registrarArray;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenDataHexString The device token as provided as a data hex string.
++ (void)registerWithData:(NSData * _Nonnull)data registrarArray:(NSArray> * _Nullable)registrarArray;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
+///
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
///
/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
///
-+ (void)registerWithDataHexString:(NSString * _Nonnull)deviceTokenDataHexString registrarArray:(NSArray> * _Nullable)registrarArray;
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString registrarArray:(NSArray> * _Nullable)registrarArray;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
/// The token data as provided by the operating system.
@property (nonatomic, readonly, copy) NSData * _Nullable data;
/// The date that the token was provided by the operating system.
@property (nonatomic, readonly, copy) NSDate * _Nullable providedDate;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@@ -2404,14 +2599,15 @@ SWIFT_CLASS_NAMED("KVASessions")
@class KVATrackerConfig;
@class KVATrackerGeneral;
-@class KVANetworking;
+@class KVAPrivacy;
+@protocol KVAPrivacyProfileRegistrar;
/// The class KVATracker provides an interface between a host application and Kochava’s Attribution and Measurement servers.
SWIFT_CLASS_NAMED("KVATracker")
-@interface KVATracker : NSObject
+@interface KVATracker : NSObject
/// A shared instance, for convenience.
/// This is the preferred way of using a tracker. To complete the integration you must call func start(withAppGUIDString:)
or func start(withPartnerNameString:)
. You may alternatively use a constructor to create your own tracker. The shared instance simplifies your implementation as you do not need to store a tracker instance somewhere in a public location in your own code.
-/// By default this instance will use the default storage location equivalent to calling init(storageIdString:)
with storageIdString nil. If you wish to specify an alternative storage location, see var sharedStorageIdString
.
+/// By default this instance will use the default storage location equivalent to calling init(storageIdentifier:)
with storageIdentifier nil. If you wish to specify an alternative storage location, see var sharedStorageIdentifier
.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVATracker * _Nonnull shared;)
+ (KVATracker * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
/// A shared instance, for convenience— optional.
@@ -2438,12 +2634,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// \code
/// class MyClass
/// {
-/// let tracker = KVATracker(storageIdString: "alternate")
+/// let tracker = KVATracker(storageIdentifier: "alternate")
/// }
///
-/// \endcode\param storageIdString An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+/// \endcode\param storageIdentifier An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
///
-- (nonnull instancetype)initWithStorageIdString:(NSString * _Nullable)storageIdString OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)initWithStorageIdentifier:(NSString * _Nullable)storageIdentifier OBJC_DESIGNATED_INITIALIZER;
/// Create a tracker— using modern Objective-C syntax.
/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
/// note:
@@ -2452,9 +2648,19 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// \code
/// KVATracker *tracker = KVATracker.tracker;
///
-/// \endcodeFuture: @available(*, deprecated, renamed: “init()”)
-+ (nonnull instancetype)tracker SWIFT_WARN_UNUSED_RESULT;
-+ (nonnull instancetype)trackerWithStorageIdString:(NSString * _Nullable)storageIdString SWIFT_WARN_UNUSED_RESULT;
+/// \endcode
++ (nonnull instancetype)tracker SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.", "init()");
+/// Create a tracker— using modern Objective-C syntax.
+/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
+/// Example
+/// \code
+/// KVATracker *tracker = [KVATracker trackerWithStorageIdentifier:@"alternate"];
+///
+/// \endcodenote:
+/// This convenience constructor exists for Objective-C and is expected to be removed in a future version. In Swift you should use default constructor KVATracker(storageIdentifier:)— or preferably, the shared instance.
+/// \param storageIdString An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+///
++ (nonnull instancetype)trackerWithStorageIdString:(NSString * _Nullable)storageIdString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.", "init(storageIdentifier:)");
/// Configure the instance with an object.
/// This is the same method which is used to configure the instance when the config
response is returned from Kochava’s servers (aka kvinit). It can also be called from the host to change the defaults of various parameters (or else override them). The structure of the object you provide has the same capability as that which the server may return. Additionally you can wrap the parameters you provide in special objects with special keys $default$
, $default.append$
, $override$
, or $override.append$
, to indicate how these options are treated relative to the server’s options.
/// | Special Key | Treatment |
@@ -2512,23 +2718,43 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// Start the tracker.
/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
- (void)start;
-/// Return a description of the instance.
-@property (nonatomic, readonly, copy) NSString * _Nonnull description;
-/// Execute an advanced instruction.
-/// This function can be used to executed advanced instruction(s) for certain atypical use cases. You should only use this if instructed by your Kochava Client Success Manager.
-/// \param identifierString An identifier for the advanced instruction.
-///
-/// \param valueObject A value object for the advanced instruction.
-///
-- (void)executeAdvancedInstructionWithIdentifierString:(NSString * _Nonnull)identifierString valueObject:(id _Nullable)valueObject;
-/// Invalidate the instance.
+/// Start the tracker with advanced options.
+/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
+/// important:
+/// If you pass asyncBool as false, it becomes your responsibility to ensure that class KVASystem var shared func primarySystemStartDidExecuteOnMainThread() has been called prior to calling this method. The synchronous dispatch associated with this process can only be made after an asynchronous dispatch to ensure that no locks exist at the time, and so if you pass asyncBool as false it will be skipped here.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)startWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Stop the tracker.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+- (void)stop;
+/// Stop the tracker with advanced options.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)stopWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Invalidate the tracker.
/// When using this method with the shared instance, you are guaranteed to be re-defaulted a new instance the next time it is referenced, and you may immediately move forward to re-configure and start it.
- (void)invalidate;
-/// Invalidate the instance.
+/// Invalidate the tracker with advanced options.
/// See func invalidate()
-- (void)invalidateWithAsyncBool:(BOOL)asyncBool printLogMessageBool:(BOOL)printLogMessageBool;
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)invalidateWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Return a description of the instance.
+@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
-@property (nonatomic, readonly, strong) KVAAdNetwork * _Nullable adNetwork;
+@property (nonatomic, readonly, strong) KVAAdNetwork * _Nonnull adNetwork;
/// A feature which may be used to limit advertising tracking from the level of the application (or host).
@property (nonatomic, readonly, strong) KVAAppLimitAdTracking * _Nonnull appLimitAdTracking;
/// A feature which interfaces with Apple’s App Tracking Transparency system.
@@ -2538,14 +2764,11 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// A feature which is responsible for controlling and updating the configuration of the tracker.
/// This is sometimes referred to by the name of the backing service which provides the configuration, kvinit.
@property (nonatomic, readonly, strong) KVATrackerConfig * _Nonnull config;
-/// A feature which serves as an authority related to consent for the sharing of personal data.
-/// Data sharing privacy laws such as GDPR require consent to be obtained before certain kinds of personal data may be collected or calculated, kept in memory, persisted or retained in persistent storage, and/or shared with partners. During the natural lifecycle, there are times where partners may be added and cause the consent status to fall back to an unknown state. Later the user may again be prompted and the consent status may (or may not) again come to be known. All of this is predicated upon whether or not consent is required, which is governed by a variety of factors such as location.
-@property (nonatomic, readonly, strong) KVAConsent * _Nonnull consent;
/// A feature which is responsible for custom identifiers.
-/// Register a custom identifier by calling class KVACustomIdentifiers
func KVACustomIdentifiers/register(withNameString:identifierString:)
.
+/// Register a custom identifier by calling class KVACustomIdentifiers
func KVACustomIdentifiers/register(name:identifier:)
.
@property (nonatomic, readonly, strong) KVACustomIdentifiers * _Nonnull customIdentifiers;
/// A feature which measures deeplink activity.
-/// Create and process a basic deeplink (which is a wrapper for Apple’s url) by calling class KVADeeplink
func KVADeeplink/process(withURL:completionHandler:)
.
+/// Create and process a basic deeplink (which is a wrapper for Apple’s url) by calling class KVADeeplink
func KVADeeplink/process(url:closure_didComplete:)
.
@property (nonatomic, readonly, strong) KVADeeplinks * _Nonnull deeplinks;
/// A feature which is responsible for the identification of a device.
/// The managed id is referred to as the Kochava Device Id. Get the Kochava Device Id by getting class KVADeviceId
var KVADeviceId/string
.
@@ -2553,26 +2776,26 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// A feature which encapsulates all of the general aspects of a tracker not belonging to any other encapsulated features.
@property (nonatomic, readonly, strong) KVATrackerGeneral * _Nonnull general;
/// A feature which is responsible for linking identities.
-/// Register an identity link by calling class KVAIdentityLink
func KVAIdentityLink/register(withNameString:identifierString:)
.
+/// Register an identity link by calling class KVAIdentityLink
func KVAIdentityLink/register(name:identifier:)
.
@property (nonatomic, readonly, strong) KVAIdentityLink * _Nonnull identityLink;
/// A feature which provides information about the install.
/// The install is automatically sent to Kochava’s servers after starting the tracker, and after the retrieval of the tracker’s configuration in feature var config
.
@property (nonatomic, readonly, strong) KVAInstall * _Nonnull install;
/// A feature which provides networking support.
-/// The networking instance manages the exchange of data between the client and various server(s), along with the associated tasks, network transactions, adapters, and instructions. See class KVANetworking in module KochavaCore.
+/// The networking instance manages the exchange of data between the client and various server(s), along with the associated tasks, network transactions, and adapters. See class KVANetworking in module KochavaCore.
@property (nonatomic, readonly, strong) KVANetworking * _Nonnull networking;
-/// A feature which is responsible for privacy.
-/// Privacy profiles are automatically registered from the server. Alternatively create and register a privacy profile locally by calling class KVAPrivacyProfile
func KVAPrivacyProfile/register(withNameString:payloadKeyStringArray:)
. Enable (or explicitly disable) a profile by calling class KVAPrivacy
func KVAPrivacy/setEnabledBool(forProfileNameString:enabledBool:)
.
-@property (nonatomic, readonly, strong) KVAPrivacy * _Nonnull privacy;
/// A feature which provides for the measurement of push notifications.
-/// Create and register a push notifications token (which is a wrapper for Apple’s device token data) by calling class KVAPushNotificationsToken
func KVAPushNotificationsToken/register(withData:)
.
+/// Create and register a push notifications token (which is a wrapper for Apple’s device token data) by calling class KVAPushNotificationsToken
func KVAPushNotificationsToken/register(data:)
.
@property (nonatomic, readonly, strong) KVAPushNotifications * _Nonnull pushNotifications;
-/// A boolean which indicates if you want to limit ad tracking at the application level. This is a convenience variable which is equivalent to var appLimitAdTracking
func KVAAppLimitAdTracking/bool
.
+/// A boolean which indicates if you want to limit ad tracking at the application level. This is a convenience variable which is fully equivalent to, and interchangeable with, appLimitAdTracking
.KVAAppLimitAdTracking/bool
.
/// This feature is related to the Limit Ad Tracking feature which is typically found on an Apple device under Settings, Privacy, Advertising. In the same way that you can limit ad tracking through that setting, this feature provides a second and independent means for the host app to limit ad tracking by asking the user directly. A value of false from either this feature or Apple’s will result in the limiting of ad tracking.
-@property (nonatomic) BOOL appLimitAdTrackingBool;
-/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install (convenience). This is a convenience variable which is equivalent to var deviceId
func KVADeviceId/string
.
-@property (nonatomic, readonly, copy) NSString * _Nullable deviceIdString;
-/// A boolean which when true causes the instance to sleep. This is a convenience variable which is equivalent to var networking
func sleepBool.
+@property (nonatomic) BOOL appLimitAdTrackingBool SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.", "appLimitAdTracking.bool");
+/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install (convenience). This is a convenience variable which is fully equivalent to, and interchangeable with, deviceId
.KVADeviceId/string
.
+@property (nonatomic, readonly, copy) NSString * _Nullable deviceIdString SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use var deviceId.string instead.", "deviceId.string");
+/// A feature which is responsible for privacy, including intelligent consent. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.privacy.
+/// Privacy profiles are automatically registered from the server. Alternatively create and register a privacy profile locally by calling class KVAPrivacyProfile func KVAPrivacyProfile/register(name:payloadKeyStringArray:). Enable (or explicitly disable) a profile by calling class KVAPrivacy func KVAPrivacy/setEnabledBool(forProfileNameString:enabledBool:).
+@property (nonatomic, readonly, strong) KVAPrivacy * _Nonnull privacy;
+/// A boolean which when true causes the instance to sleep. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.sleepBool.
/// The default is false. When set to true, this causes tasks to effectively be suspended until this condition is lifted. While this is set to true, tasks are not lost per-say; however, if a task may have otherwise occurred multiple times, it may be represented only once once the condition is lifted.
@property (nonatomic) BOOL sleepBool;
@property (nonatomic, readonly, strong) id _Nullable deeplinksProcessor;
@@ -2581,9 +2804,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
@property (nonatomic, readonly, strong) id _Nonnull pushNotificationsTokenRegistrar;
/// A string used as a storage identifier for the shared instance.
/// This is used to further qualify where in persistent storage the information for this instance is stored. This property should not be used except in very specific circumstances. Please contact your client success representative if you are interested in using this. You would set this value to a short unique string consisting of regular alphanumeric characters.
-/// Following deployment with a given storage identifer this should never be changed except to represent an entirely new integration.
+/// Following deployment with a given storage identifier this should never be changed except to represent an entirely new integration.
/// If used, it is imperative that this value be consistently set prior to accessing the shared instance for the first time. You must make accommodations to set this as early as possible, where it would be prior to any access to var shared
throughout all of your code.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdString;)
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdentifier;)
++ (NSString * _Nullable)sharedStorageIdentifier SWIFT_WARN_UNUSED_RESULT;
++ (void)setSharedStorageIdentifier:(NSString * _Nullable)sharedStorageIdentifier;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdString SWIFT_DEPRECATED_MSG("Use sharedStorageIdentifier instead.", "sharedStorageIdentifier");)
+ (NSString * _Nullable)sharedStorageIdString SWIFT_WARN_UNUSED_RESULT;
+ (void)setSharedStorageIdString:(NSString * _Nullable)sharedStorageIdString;
/// A boolean indicating whether or not the instance has been started.
@@ -2599,6 +2825,15 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sha
SWIFT_CLASS_NAMED("KVATrackerConfig")
@interface KVATrackerConfig : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Get the config dictionary with a completion handler.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
+///
+- (void)retrieveWithClosure_didComplete:(void (^ _Nonnull)(KVATrackerConfig * _Nonnull))closure_didComplete;
+/// A closure which is called when attribution is retrieved.
+@property (nonatomic, copy) void (^ _Nullable closure_didComplete)(KVATrackerConfig * _Nonnull);
+@property (nonatomic, readonly) BOOL consentGDPRAppliesBool;
+/// A boolean indicating if the configuration has been collected from the server at least one time.
+@property (nonatomic, readonly) BOOL collectedBool;
@end
@@ -2651,10 +2886,15 @@ SWIFT_CLASS_NAMED("KVATrackerUpdates")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
+#endif
+#if defined(__cplusplus)
+#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#pragma clang diagnostic pop
#endif
+#else
+#error unsupported Swift architecture
#endif
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker.h b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker.h
index d12d707..c932f3a 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Headers/KochavaTracker.h
@@ -3,7 +3,7 @@
// KochavaTracker
//
// Created by John Bushnell on 10/20/17.
-// Copyright © 2013 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2013 - 2023 Kochava, Inc. All rights reserved.
//
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/KochavaTracker b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/KochavaTracker
index cebd464..7a9bf08 100755
Binary files a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/KochavaTracker and b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/KochavaTracker differ
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.abi.json b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.abi.json
new file mode 100644
index 0000000..2b116a5
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.abi.json
@@ -0,0 +1,49009 @@
+{
+ "ABIRoot": {
+ "kind": "Root",
+ "name": "TopLevel",
+ "printedName": "TopLevel",
+ "children": [
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventType",
+ "printedName": "KVAEventType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "achievement",
+ "printedName": "achievement",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)achievement",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11achievementACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)achievement",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11achievementACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adClick",
+ "printedName": "adClick",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)adClick",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC7adClickACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)adClick",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC7adClickACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "addToCart",
+ "printedName": "addToCart",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)addToCart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9addToCartACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)addToCart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9addToCartACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "addToWishList",
+ "printedName": "addToWishList",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)addToWishList",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13addToWishListACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)addToWishList",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13addToWishListACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adView",
+ "printedName": "adView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)adView",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6adViewACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)adView",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6adViewACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "checkoutStart",
+ "printedName": "checkoutStart",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)checkoutStart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13checkoutStartACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)checkoutStart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13checkoutStartACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consentGranted",
+ "printedName": "consentGranted",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)consentGranted",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC14consentGrantedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)consentGranted",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC14consentGrantedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "custom",
+ "printedName": "custom",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)custom",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6customACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)custom",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6customACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplink",
+ "printedName": "deeplink",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)deeplink",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8deeplinkACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)deeplink",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8deeplinkACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "levelComplete",
+ "printedName": "levelComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)levelComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13levelCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)levelComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13levelCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "purchase",
+ "printedName": "purchase",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)purchase",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8purchaseACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)purchase",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8purchaseACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushOpened",
+ "printedName": "pushOpened",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)pushOpened",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10pushOpenedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)pushOpened",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10pushOpenedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushReceived",
+ "printedName": "pushReceived",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)pushReceived",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC12pushReceivedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)pushReceived",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC12pushReceivedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rating",
+ "printedName": "rating",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)rating",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6ratingACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)rating",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6ratingACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "registrationComplete",
+ "printedName": "registrationComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)registrationComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC20registrationCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)registrationComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC20registrationCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "search",
+ "printedName": "search",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)search",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6searchACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)search",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6searchACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startTrial",
+ "printedName": "startTrial",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)startTrial",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10startTrialACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)startTrial",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10startTrialACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "subscribe",
+ "printedName": "subscribe",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)subscribe",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9subscribeACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)subscribe",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9subscribeACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tutorialComplete",
+ "printedName": "tutorialComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)tutorialComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC16tutorialCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)tutorialComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC16tutorialCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "view",
+ "printedName": "view",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)view",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC4viewACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)view",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC4viewACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAEventTypeC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAEventTypeC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(py)description",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)description",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nameString",
+ "printedName": "nameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(py)nameString",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10nameStringSSvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)nameString",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10nameStringSSvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)init",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEventType",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEvent",
+ "printedName": "KVAEvent",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)init",
+ "mangledName": "$s14KochavaTracker8KVAEventCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Required",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)initWithType:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4typeAcA0C4TypeC_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "event",
+ "printedName": "event(withType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(cm)eventWithType:",
+ "mangledName": "$s14KochavaTracker8KVAEventC5event8withTypeACXDAA0cF0C_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "eventWithType:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(typeNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)initWithTypeNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14typeNameStringACSS_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithTypeNameString:",
+ "declAttributes": [
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "event",
+ "printedName": "event(withTypeNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(cm)eventWithTypeNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC5event18withTypeNameStringACXDSS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "eventWithTypeNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker8KVAEventC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker8KVAEventC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)description",
+ "mangledName": "$s14KochavaTracker8KVAEventC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)description",
+ "mangledName": "$s14KochavaTracker8KVAEventC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC7executeyyF",
+ "mangledName": "$s14KochavaTracker8KVAEventC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)send",
+ "mangledName": "$s14KochavaTracker8KVAEventC4sendyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendWithSenderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4send11senderArrayySayAA0C14SenderProvider_pGSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "sendWithSenderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(withSenderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC4send15withSenderArrayySayAA0cF8Provider_pGSg_tF",
+ "mangledName": "$s14KochavaTracker8KVAEventC4send15withSenderArrayySayAA0cF8Provider_pGSg_tF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "NonObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "eventNameString",
+ "printedName": "eventNameString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)eventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15eventNameStringSSyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "valueObject",
+ "printedName": "valueObject(forPropertyIdentifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)valueObjectForPropertyIdentifier:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11valueObject21forPropertyIdentifieryXlSgSSSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "valueObjectForPropertyIdentifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "subURLIdString",
+ "printedName": "subURLIdString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)subURLIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14subURLIdStringSSSgyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "eventType",
+ "printedName": "eventType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)eventType",
+ "mangledName": "$s14KochavaTracker8KVAEventC9eventTypeAA0cE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)eventType",
+ "mangledName": "$s14KochavaTracker8KVAEventC9eventTypeAA0cE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)networking",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)networking",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sendAsyncBool",
+ "printedName": "sendAsyncBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sendAsyncBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendAsyncBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSendAsyncBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13sendAsyncBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sendLogMessagePrintBool",
+ "printedName": "sendLogMessagePrintBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sendLogMessagePrintBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendLogMessagePrintBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSendLogMessagePrintBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "serviceLocallyBool",
+ "printedName": "serviceLocallyBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)serviceLocallyBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)serviceLocallyBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setServiceLocallyBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18serviceLocallyBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "actionString",
+ "printedName": "actionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)actionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)actionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setActionString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12actionStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adCampaignIdString",
+ "printedName": "adCampaignIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adCampaignIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adCampaignIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdCampaignIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adCampaignNameString",
+ "printedName": "adCampaignNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adCampaignNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adCampaignNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdCampaignNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adDeviceTypeString",
+ "printedName": "adDeviceTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adDeviceTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adDeviceTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdDeviceTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adGroupIdString",
+ "printedName": "adGroupIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adGroupIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adGroupIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdGroupIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15adGroupIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adGroupNameString",
+ "printedName": "adGroupNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adGroupNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adGroupNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdGroupNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17adGroupNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adMediationNameString",
+ "printedName": "adMediationNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adMediationNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adMediationNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdMediationNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21adMediationNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adNetworkNameString",
+ "printedName": "adNetworkNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adNetworkNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adNetworkNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdNetworkNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adPlacementString",
+ "printedName": "adPlacementString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adPlacementString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adPlacementString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdPlacementString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17adPlacementStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adSizeString",
+ "printedName": "adSizeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adSizeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adSizeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdSizeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12adSizeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adTypeString",
+ "printedName": "adTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12adTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appleWatchBool",
+ "printedName": "appleWatchBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appleWatchBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appleWatchBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppleWatchBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14appleWatchBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appleWatchIdString",
+ "printedName": "appleWatchIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appleWatchIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appleWatchIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppleWatchIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appStoreReceiptBase64EncodedString",
+ "printedName": "appStoreReceiptBase64EncodedString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appStoreReceiptBase64EncodedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appStoreReceiptBase64EncodedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppStoreReceiptBase64EncodedString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "backgroundBoolNumber",
+ "printedName": "backgroundBoolNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)backgroundBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)backgroundBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setBackgroundBoolNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "checkoutAsGuestString",
+ "printedName": "checkoutAsGuestString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)checkoutAsGuestString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)checkoutAsGuestString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCheckoutAsGuestString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "completedBoolNumber",
+ "printedName": "completedBoolNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)completedBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)completedBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCompletedBoolNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consent",
+ "printedName": "consent",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)consent",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)consent",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setConsent:",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "contentIdString",
+ "printedName": "contentIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)contentIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)contentIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setContentIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15contentIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "contentTypeString",
+ "printedName": "contentTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)contentTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)contentTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setContentTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17contentTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currencyString",
+ "printedName": "currencyString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)currencyString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)currencyString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCurrencyString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14currencyStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customEventName",
+ "printedName": "customEventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)customEventName",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)customEventName",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCustomEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15customEventNameSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customEventNameString",
+ "printedName": "customEventNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)customEventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "Available"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)customEventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCustomEventNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21customEventNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "date",
+ "printedName": "date",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)date",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)date",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC4date10Foundation4DateVSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dateString",
+ "printedName": "dateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)dateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)dateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10dateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "descriptionString",
+ "printedName": "descriptionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)descriptionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)descriptionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDescriptionString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17descriptionStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "destinationString",
+ "printedName": "destinationString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)destinationString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)destinationString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDestinationString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17destinationStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "durationTimeIntervalNumber",
+ "printedName": "durationTimeIntervalNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)durationTimeIntervalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)durationTimeIntervalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDurationTimeIntervalNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "endDate",
+ "printedName": "endDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)endDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)endDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setEndDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "endDateString",
+ "printedName": "endDateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)endDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)endDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setEndDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13endDateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "infoDictionary",
+ "printedName": "infoDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)infoDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)infoDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setInfoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "infoString",
+ "printedName": "infoString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)infoString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)infoString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setInfoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10infoStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemAddedFromString",
+ "printedName": "itemAddedFromString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)itemAddedFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)itemAddedFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setItemAddedFromString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "levelString",
+ "printedName": "levelString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)levelString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)levelString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setLevelString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC11levelStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "maxRatingValueDoubleNumber",
+ "printedName": "maxRatingValueDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)maxRatingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)maxRatingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setMaxRatingValueDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nameString",
+ "printedName": "nameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)nameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)nameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10nameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "orderIdString",
+ "printedName": "orderIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)orderIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)orderIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setOrderIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13orderIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originString",
+ "printedName": "originString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)originString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)originString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setOriginString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12originStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "payloadDictionary",
+ "printedName": "payloadDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)payloadDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)payloadDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPayloadDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "priceDecimalNumber",
+ "printedName": "priceDecimalNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)priceDecimalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)priceDecimalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPriceDecimalNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "priceDoubleNumber",
+ "printedName": "priceDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)priceDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)priceDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPriceDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "quantityDoubleNumber",
+ "printedName": "quantityDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)quantityDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)quantityDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setQuantityDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "ratingValueDoubleNumber",
+ "printedName": "ratingValueDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)ratingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)ratingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setRatingValueDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "receiptIdString",
+ "printedName": "receiptIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)receiptIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)receiptIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setReceiptIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15receiptIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "referralFromString",
+ "printedName": "referralFromString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)referralFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)referralFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setReferralFromString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18referralFromStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "registrationMethodString",
+ "printedName": "registrationMethodString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)registrationMethodString",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)registrationMethodString",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setRegistrationMethodString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC24registrationMethodStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "resultsString",
+ "printedName": "resultsString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)resultsString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)resultsString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setResultsString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13resultsStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "scoreString",
+ "printedName": "scoreString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)scoreString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)scoreString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setScoreString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC11scoreStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "searchTermString",
+ "printedName": "searchTermString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)searchTermString",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)searchTermString",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSearchTermString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC16searchTermStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sourceString",
+ "printedName": "sourceString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sourceString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sourceString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSourceString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12sourceStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialXDoubleNumber",
+ "printedName": "spatialXDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialXDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialXDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialXDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialYDoubleNumber",
+ "printedName": "spatialYDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialYDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialYDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialYDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialZDoubleNumber",
+ "printedName": "spatialZDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialZDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialZDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialZDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startDate",
+ "printedName": "startDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)startDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)startDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setStartDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startDateString",
+ "printedName": "startDateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)startDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)startDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setStartDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15startDateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "successString",
+ "printedName": "successString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)successString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)successString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSuccessString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13successStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userIdString",
+ "printedName": "userIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)userIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)userIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUserIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12userIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uriString",
+ "printedName": "uriString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)uriString",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)uriString",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUriString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC9uriStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userNameString",
+ "printedName": "userNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)userNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)userNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUserNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14userNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "validatedString",
+ "printedName": "validatedString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)validatedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)validatedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setValidatedString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15validatedStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventNameySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName11senderArrayySS_SayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString11senderArrayySS_SayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName14infoDictionaryySS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString14infoDictionaryySS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoDictionary:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoDictionary:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName14infoDictionary11senderArrayySS_SDys11AnyHashableVypGSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoDictionary:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoDictionary:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoDictionary:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString14infoDictionary11senderArrayySS_SDys11AnyHashableVypGSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoDictionary:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName10infoStringySS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString04infoH0ySS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName10infoString11senderArrayySS_SSSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString04infoH011senderArrayySS_SSSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventNameACSS_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameStringACXDSS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventName14infoDictionaryACSS_SDys11AnyHashableVypGSgtcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:infoDictionary:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameString14infoDictionaryACXDSS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventName10infoStringACSS_SSSgtcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:infoString:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameString04infoH0ACXDSS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent",
+ "mangledName": "$s14KochavaTracker8KVAEventC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEvent",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetTransactionServiceLocallyBoolPropertyProvider",
+ "printedName": "KVANetTransactionServiceLocallyBoolPropertyProvider",
+ "usr": "s:11KochavaCore51KVANetTransactionServiceLocallyBoolPropertyProviderP",
+ "mangledName": "$s11KochavaCore51KVANetTransactionServiceLocallyBoolPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetTransactionSubURLIdStringMethodProvider",
+ "printedName": "KVANetTransactionSubURLIdStringMethodProvider",
+ "usr": "s:11KochavaCore45KVANetTransactionSubURLIdStringMethodProviderP",
+ "mangledName": "$s11KochavaCore45KVANetTransactionSubURLIdStringMethodProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "JavaScriptCore",
+ "printedName": "JavaScriptCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetwork",
+ "printedName": "KVAAdNetwork",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC5startyyF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "conversion",
+ "printedName": "conversion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)conversion",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)conversion",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setConversion:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didRegisterAppForAttribution",
+ "printedName": "closure_didRegisterAppForAttribution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)closure_didRegisterAppForAttribution",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)closure_didRegisterAppForAttribution",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setClosure_didRegisterAppForAttribution:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didRegisterAppForAttributionBlock",
+ "printedName": "didRegisterAppForAttributionBlock",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)didRegisterAppForAttributionBlock",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)didRegisterAppForAttributionBlock",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setDidRegisterAppForAttributionBlock:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetwork",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AdServices",
+ "printedName": "AdServices",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KVAAppLimitAdTracking",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bool",
+ "printedName": "bool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(py)boolean",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "boolean",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(im)boolean",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(im)setBoolean:",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvM",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAppLimitAdTracking",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KVAAppTrackingTransparency",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC5startyyF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "autoRequestTrackingAuthorizationBool",
+ "printedName": "autoRequestTrackingAuthorizationBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)autoRequestTrackingAuthorizationBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)autoRequestTrackingAuthorizationBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setAutoRequestTrackingAuthorizationBool:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "authorizationStatusWaitTimeInterval",
+ "printedName": "authorizationStatusWaitTimeInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)authorizationStatusWaitTimeInterval",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)authorizationStatusWaitTimeInterval",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setAuthorizationStatusWaitTimeInterval:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "enabledBool",
+ "printedName": "enabledBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)enabledBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)enabledBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setEnabledBool:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "authorizationStatusString",
+ "printedName": "authorizationStatusString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)authorizationStatusString",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC25authorizationStatusStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)authorizationStatusString",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC25authorizationStatusStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAppTrackingTransparency",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAttribution",
+ "printedName": "KVAAttribution",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC5startyyF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "retrieveResult",
+ "printedName": "retrieveResult(closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)retrieveResultWithCompletionHandler:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC14retrieveResult19closure_didCompleteyyAA0cE0Cc_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "retrieveResultWithCompletionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "result",
+ "printedName": "result",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)result",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6resultAA0C6ResultCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)result",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6resultAA0C6ResultCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didRetrieveResult",
+ "printedName": "closure_didRetrieveResult",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)closure_didRetrieveResult",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)closure_didRetrieveResult",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)setClosure_didRetrieveResult:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvM",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "retrieveResultBool",
+ "printedName": "retrieveResultBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)retrieveResultBool",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)retrieveResultBool",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)setRetrieveResultBool:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvM",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAttribution",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAttributionResult",
+ "printedName": "KVAAttributionResult",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "attributedBool",
+ "printedName": "attributedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)attributedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC14attributedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)attributedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC14attributedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "firstInstallBool",
+ "printedName": "firstInstallBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)firstInstallBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC16firstInstallBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)firstInstallBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC16firstInstallBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawDictionary",
+ "printedName": "rawDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)rawDictionary",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13rawDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)rawDictionary",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13rawDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "retrievedBool",
+ "printedName": "retrievedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)retrievedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13retrievedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)retrievedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13retrievedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)init",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAttributionResult",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KVACustomIdentifiers",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers(im)registerWithName:identifier:",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8register4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withNameString:identifierString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers(im)registerWithNameString:identifierString:",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8register14withNameString010identifierH0ySS_SStF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "objc_name": "registerWithNameString:identifierString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVACustomIdentifiers",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplink",
+ "printedName": "KVADeeplink",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19closure_didCompletey10Foundation3URLVSg_yACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL17completionHandlery10Foundation0F0VSg_yACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19timeoutTimeInterval19closure_didCompletey10Foundation3URLVSg_SdyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:timeoutTimeInterval:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL19timeoutTimeInterval17completionHandlery10Foundation0F0VSg_SdyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:processor:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:processor:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url9processor19closure_didCompletey10Foundation3URLVSg_AA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:processor:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:processor:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:processor:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL9processor17completionHandlery10Foundation0F0VSg_AA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:processor:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:timeoutTimeInterval:processor:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:processor:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19timeoutTimeInterval9processor19closure_didCompletey10Foundation3URLVSg_SdAA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:processor:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:timeoutTimeInterval:processor:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:processor:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL19timeoutTimeInterval9processor17completionHandlery10Foundation0F0VSg_SdAA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:processor:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeeplinkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isEqual",
+ "printedName": "isEqual(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)isEqual:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7isEqualySbypSgF",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "isEqual:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7executeyyF",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "urlString",
+ "printedName": "urlString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)urlString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)urlString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setUrlString:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC9urlStringSSSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)networking",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)networking",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "destinationString",
+ "printedName": "destinationString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)destinationString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)destinationString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setDestinationString:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC17destinationStringSSSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawDictionary",
+ "printedName": "rawDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)rawDictionary",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)rawDictionary",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setRawDictionary:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeeplink",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KVADeeplinksProcessor",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(deeplink:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor(im)processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP7process8deeplink19timeoutTimeInterval19closure_didCompleteyAA11KVADeeplinkC_SdyAIcSgtF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVADeeplinksProcessor>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KVADeeplinksProcessorProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "deeplinksProcessor",
+ "printedName": "deeplinksProcessor",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider(py)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP09deeplinksD0AA0cD0_pSgvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider(im)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP09deeplinksD0AA0cD0_pSgvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVADeeplinksProcessorProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinks",
+ "printedName": "KVADeeplinks",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "copy",
+ "printedName": "copy(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "ObjectiveC.NSZone?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSZone",
+ "printedName": "ObjectiveC.NSZone",
+ "usr": "s:10ObjectiveC6NSZoneV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)copyWithZone:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC4copy4withyp10ObjectiveC6NSZoneVSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "copyWithZone:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "augmentDeferredPrefetch",
+ "printedName": "augmentDeferredPrefetch(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)augmentDeferredPrefetchWithName:identifier:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC23augmentDeferredPrefetch4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "augmentDeferredPrefetchWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(deeplink:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7process8deeplink19timeoutTimeInterval19closure_didCompleteyAA11KVADeeplinkC_SdyAIcSgtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeeplinks",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeviceId",
+ "printedName": "KVADeviceId",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "string",
+ "printedName": "string",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId(py)string",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6stringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId(im)string",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6stringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeviceId",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEvents",
+ "printedName": "KVAEvents",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker9KVAEventsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker9KVAEventsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(event:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents(im)sendEvent:",
+ "mangledName": "$s14KochavaTracker9KVAEventsC4send5eventyAA8KVAEventC_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "sendEvent:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents",
+ "mangledName": "$s14KochavaTracker9KVAEventsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEvents",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAEventSender",
+ "printedName": "KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KVAAdNetworkConversion",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(cm)kva_from:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "kva_from:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC5startyyF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didUpdatePostbackValue",
+ "printedName": "closure_didUpdatePostbackValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)closure_didUpdatePostbackValue",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)closure_didUpdatePostbackValue",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)setClosure_didUpdatePostbackValue:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvM",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didUpdateValueBlock",
+ "printedName": "didUpdateValueBlock",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)didUpdateValueBlock",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)didUpdateValueBlock",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)setDidUpdateValueBlock:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvM",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "result",
+ "printedName": "result",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)result",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6resultAA0cdE6ResultCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)result",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6resultAA0cdE6ResultCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetworkConversion",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAIdentityLink",
+ "printedName": "KVAIdentityLink",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink(im)registerWithName:identifier:",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8register4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withNameString:identifierString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink(im)registerWithNameString:identifierString:",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8register14withNameString010identifierH0ySS_SStF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "objc_name": "registerWithNameString:identifierString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAIdentityLink",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UserNotifications",
+ "printedName": "UserNotifications",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAInstall",
+ "printedName": "KVAInstall",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker10KVAInstallC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker10KVAInstallC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC5startyyF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didStartFirstDate",
+ "printedName": "didStartFirstDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall(py)didStartFirstDate",
+ "mangledName": "$s14KochavaTracker10KVAInstallC17didStartFirstDate10Foundation0G0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall(im)didStartFirstDate",
+ "mangledName": "$s14KochavaTracker10KVAInstallC17didStartFirstDate10Foundation0G0VSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall",
+ "mangledName": "$s14KochavaTracker10KVAInstallC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAInstall",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "JavaScriptCore",
+ "printedName": "JavaScriptCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KVAAdNetworkConversionResult",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "copy",
+ "printedName": "copy(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "ObjectiveC.NSZone?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSZone",
+ "printedName": "ObjectiveC.NSZone",
+ "usr": "s:10ObjectiveC6NSZoneV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)copyWithZone:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC4copy4withyp10ObjectiveC6NSZoneVSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "copyWithZone:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(cm)kva_from:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "kva_from:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "valueInt",
+ "printedName": "valueInt()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)valueInt",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC8valueIntSiyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "coarseValue",
+ "printedName": "coarseValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)coarseValue",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11coarseValueSo04SKAdd6CoarseeH0aSgvp",
+ "moduleName": "KochavaTracker",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)coarseValue",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11coarseValueSo04SKAdd6CoarseeH0aSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "error",
+ "printedName": "error",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Error?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)error",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC5errors5Error_pSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Error?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)error",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC5errors5Error_pSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "modelString",
+ "printedName": "modelString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)modelString",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11modelStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)modelString",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11modelStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "translatedValueInt",
+ "printedName": "translatedValueInt",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvp",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvg",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "translatedValueIntNumber",
+ "printedName": "translatedValueIntNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)translatedValueIntNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC24translatedValueIntNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)translatedValueIntNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC24translatedValueIntNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawValueNumber",
+ "printedName": "rawValueNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)rawValueNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC14rawValueNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)rawValueNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC14rawValueNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetworkConversionResult",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UserNotifications",
+ "printedName": "UserNotifications",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotifications",
+ "printedName": "KVAPushNotifications",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC5startyyF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(token:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)registerToken:",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8register5tokenyAA0cD5TokenC_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerToken:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "enabledBool",
+ "printedName": "enabledBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(py)enabledBool",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)enabledBool",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)setEnabledBool:",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvM",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAPushNotifications",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerGeneral",
+ "printedName": "KVATrackerGeneral",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC5startyyF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "instanceCreatedDate",
+ "printedName": "instanceCreatedDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvp",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvg",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startSequenceDidCompleteNotificationName",
+ "printedName": "startSequenceDidCompleteNotificationName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Name",
+ "printedName": "Foundation.NSNotification.Name",
+ "usr": "c:@T@NSNotificationName"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avpZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Name",
+ "printedName": "Foundation.NSNotification.Name",
+ "usr": "c:@T@NSNotificationName"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avgZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerGeneral",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KVAPushNotificationsToken",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithData:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register4datay10Foundation4DataV_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithData:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withData:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register8withDatay10Foundation0H0V_tFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register8withDatay10Foundation0H0V_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(data:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithData:registrarArray:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register4data14registrarArrayy10Foundation4DataV_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithData:registrarArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withData:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register8withData14registrarArrayy10Foundation0H0V_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register8withData14registrarArrayy10Foundation0H0V_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(dataHexString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithDataHexString:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register13dataHexStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithDataHexString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withDataHexString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexStringySS_tFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(dataHexString:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithDataHexString:registrarArray:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register13dataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithDataHexString:registrarArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withDataHexString:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isEqual",
+ "printedName": "isEqual(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)isEqual:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7isEqualySbypSgF",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "isEqual:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7executeyyF",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)data",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC4data10Foundation4DataVSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)data",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC4data10Foundation4DataVSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "providedDate",
+ "printedName": "providedDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)providedDate",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC12providedDate10Foundation0G0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)providedDate",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC12providedDate10Foundation0G0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)networking",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)networking",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)init",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAPushNotificationsToken",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KVAPushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(token:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar(im)registerToken:",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP8register5tokenyAA0cdE0C_tF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAPushNotificationsTokenRegistrar>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "registerToken:",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KVAPushNotificationsTokenRegistrarProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "pushNotificationsTokenRegistrar",
+ "printedName": "pushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider(py)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP04pushdeF0AA0cdeF0_pvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider(im)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP04pushdeF0AA0cdeF0_pvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAPushNotificationsTokenRegistrarProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATracker",
+ "printedName": "KVATracker",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)shared",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6sharedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)shared",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6sharedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "shared_optional",
+ "printedName": "shared_optional",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVATracker?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)shared_optional",
+ "mangledName": "$s14KochavaTracker10KVATrackerC15shared_optionalACSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVATracker?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)shared_optional",
+ "mangledName": "$s14KochavaTracker10KVATrackerC15shared_optionalACSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedInstance",
+ "printedName": "sharedInstance",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedInstance",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14sharedInstanceyXlvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedInstance",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14sharedInstanceyXlvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)init",
+ "mangledName": "$s14KochavaTracker10KVATrackerCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Convenience",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(storageIdentifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)initWithStorageIdentifier:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17storageIdentifierACSSSg_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithStorageIdentifier:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "tracker",
+ "printedName": "tracker()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)tracker",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7trackerACXDyFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "tracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "tracker",
+ "printedName": "tracker(withStorageIdString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)trackerWithStorageIdString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7tracker19withStorageIdStringACXDSSSg_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "trackerWithStorageIdString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "configure",
+ "printedName": "configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)configureWith:context:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "configureWith:context:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker10KVATrackerC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(withAppGUIDString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithAppGUIDString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start17withAppGUIDStringySS_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithAppGUIDString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(withPartnerNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithPartnerNameString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start21withPartnerNameStringySS_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithPartnerNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)start",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stop",
+ "printedName": "stop()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)stop",
+ "mangledName": "$s14KochavaTracker10KVATrackerC4stopyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stop",
+ "printedName": "stop(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)stopWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC4stop19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "stopWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)invalidate",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)invalidateWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10invalidate19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "invalidateWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)description",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)description",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adNetwork",
+ "printedName": "adNetwork",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)adNetwork",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9adNetworkAA05KVAAdE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)adNetwork",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9adNetworkAA05KVAAdE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appLimitAdTracking",
+ "printedName": "appLimitAdTracking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KochavaTracker.KVAAppLimitAdTracking",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appLimitAdTracking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18appLimitAdTrackingAA06KVAAppefG0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KochavaTracker.KVAAppLimitAdTracking",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appLimitAdTracking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18appLimitAdTrackingAA06KVAAppefG0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appTrackingTransparency",
+ "printedName": "appTrackingTransparency",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KochavaTracker.KVAAppTrackingTransparency",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appTrackingTransparency",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23appTrackingTransparencyAA06KVAAppeF0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KochavaTracker.KVAAppTrackingTransparency",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appTrackingTransparency",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23appTrackingTransparencyAA06KVAAppeF0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "attribution",
+ "printedName": "attribution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)attribution",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11attributionAA14KVAAttributionCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)attribution",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11attributionAA14KVAAttributionCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "config",
+ "printedName": "config",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)config",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6configAA0C6ConfigCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)config",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6configAA0C6ConfigCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customIdentifiers",
+ "printedName": "customIdentifiers",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KochavaTracker.KVACustomIdentifiers",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)customIdentifiers",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17customIdentifiersAA09KVACustomE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KochavaTracker.KVACustomIdentifiers",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)customIdentifiers",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17customIdentifiersAA09KVACustomE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplinks",
+ "printedName": "deeplinks",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinks",
+ "printedName": "KochavaTracker.KVADeeplinks",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deeplinks",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9deeplinksAA12KVADeeplinksCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinks",
+ "printedName": "KochavaTracker.KVADeeplinks",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deeplinks",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9deeplinksAA12KVADeeplinksCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceId",
+ "printedName": "deviceId",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeviceId",
+ "printedName": "KochavaTracker.KVADeviceId",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deviceId",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8deviceIdAA09KVADeviceE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeviceId",
+ "printedName": "KochavaTracker.KVADeviceId",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deviceId",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8deviceIdAA09KVADeviceE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "events",
+ "printedName": "events",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvents",
+ "printedName": "KochavaTracker.KVAEvents",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvp",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvents",
+ "printedName": "KochavaTracker.KVAEvents",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvg",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "general",
+ "printedName": "general",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerGeneral",
+ "printedName": "KochavaTracker.KVATrackerGeneral",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)general",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7generalAA0C7GeneralCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerGeneral",
+ "printedName": "KochavaTracker.KVATrackerGeneral",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)general",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7generalAA0C7GeneralCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityLink",
+ "printedName": "identityLink",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAIdentityLink",
+ "printedName": "KochavaTracker.KVAIdentityLink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)identityLink",
+ "mangledName": "$s14KochavaTracker10KVATrackerC12identityLinkAA011KVAIdentityE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAIdentityLink",
+ "printedName": "KochavaTracker.KVAIdentityLink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)identityLink",
+ "mangledName": "$s14KochavaTracker10KVATrackerC12identityLinkAA011KVAIdentityE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "install",
+ "printedName": "install",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAInstall",
+ "printedName": "KochavaTracker.KVAInstall",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)install",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7installAA10KVAInstallCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAInstall",
+ "printedName": "KochavaTracker.KVAInstall",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)install",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7installAA10KVAInstallCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)networking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10networking0A4Core13KVANetworkingCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)networking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10networking0A4Core13KVANetworkingCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushNotifications",
+ "printedName": "pushNotifications",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotifications",
+ "printedName": "KochavaTracker.KVAPushNotifications",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)pushNotifications",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17pushNotificationsAA07KVAPushE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotifications",
+ "printedName": "KochavaTracker.KVAPushNotifications",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)pushNotifications",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17pushNotificationsAA07KVAPushE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appLimitAdTrackingBool",
+ "printedName": "appLimitAdTrackingBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appLimitAdTrackingBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appLimitAdTrackingBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)setAppLimitAdTrackingBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvM",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceIdString",
+ "printedName": "deviceIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deviceIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14deviceIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deviceIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14deviceIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "privacy",
+ "printedName": "privacy",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacy",
+ "printedName": "KochavaCore.KVAPrivacy",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAPrivacy"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)privacy",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7privacy0A4Core10KVAPrivacyCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacy",
+ "printedName": "KochavaCore.KVAPrivacy",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAPrivacy"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)privacy",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7privacy0A4Core10KVAPrivacyCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sleepBool",
+ "printedName": "sleepBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)sleepBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)sleepBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)setSleepBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC9sleepBoolSbvM",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplinksProcessor",
+ "printedName": "deeplinksProcessor",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18deeplinksProcessorAA012KVADeeplinksE0_pSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "deeplinksProcessor",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18deeplinksProcessorAA012KVADeeplinksE0_pSgvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "deeplinksProcessor",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "eventSender",
+ "printedName": "eventSender",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)eventSender",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11eventSenderAA08KVAEventE0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "eventSender",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)eventSender",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11eventSenderAA08KVAEventE0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "eventSender",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "privacyProfileRegistrar",
+ "printedName": "privacyProfileRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacyProfileRegistrar",
+ "printedName": "KochavaCore.KVAPrivacyProfileRegistrar",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)privacyProfileRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23privacyProfileRegistrar0A4Core010KVAPrivacyeF0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "privacyProfileRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacyProfileRegistrar",
+ "printedName": "KochavaCore.KVAPrivacyProfileRegistrar",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)privacyProfileRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23privacyProfileRegistrar0A4Core010KVAPrivacyeF0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "privacyProfileRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushNotificationsTokenRegistrar",
+ "printedName": "pushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC31pushNotificationsTokenRegistrarAA07KVAPushefG0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "pushNotificationsTokenRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC31pushNotificationsTokenRegistrarAA07KVAPushefG0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "pushNotificationsTokenRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedStorageIdentifier",
+ "printedName": "sharedStorageIdentifier",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedStorageIdentifier",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedStorageIdentifier",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)setSharedStorageIdentifier:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvsZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvMZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvMZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedStorageIdString",
+ "printedName": "sharedStorageIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedStorageIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedStorageIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)setSharedStorageIdString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvsZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvMZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvMZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startedBool",
+ "printedName": "startedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)startedBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11startedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startedBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11startedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker",
+ "mangledName": "$s14KochavaTracker10KVATrackerC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatableWithOptions",
+ "printedName": "KVAInvalidatableWithOptions",
+ "usr": "s:11KochavaCore27KVAInvalidatableWithOptionsP",
+ "mangledName": "$s11KochavaCore27KVAInvalidatableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPrivacyProfileRegistrarProvider",
+ "printedName": "KVAPrivacyProfileRegistrarProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrarProvider",
+ "mangledName": "$s11KochavaCore34KVAPrivacyProfileRegistrarProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVASharedPropertyProvider",
+ "printedName": "KVASharedPropertyProvider",
+ "usr": "s:11KochavaCore25KVASharedPropertyProviderP",
+ "mangledName": "$s11KochavaCore25KVASharedPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartableWithOptions",
+ "printedName": "KVAStartableWithOptions",
+ "usr": "s:11KochavaCore23KVAStartableWithOptionsP",
+ "mangledName": "$s11KochavaCore23KVAStartableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStoppable",
+ "printedName": "KVAStoppable",
+ "usr": "s:11KochavaCore12KVAStoppableP",
+ "mangledName": "$s11KochavaCore12KVAStoppableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStoppableWithOptions",
+ "printedName": "KVAStoppableWithOptions",
+ "usr": "s:11KochavaCore23KVAStoppableWithOptionsP",
+ "mangledName": "$s11KochavaCore23KVAStoppableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerConfig",
+ "printedName": "KVATrackerConfig",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC5startyyF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "retrieve",
+ "printedName": "retrieve(closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)retrieveWithClosure_didComplete:",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8retrieve19closure_didCompleteyyACc_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "retrieveWithClosure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didComplete",
+ "printedName": "closure_didComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)closure_didComplete",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)closure_didComplete",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)setClosure_didComplete:",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvM",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consentGDPRAppliesBool",
+ "printedName": "consentGDPRAppliesBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)consentGDPRAppliesBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC22consentGDPRAppliesBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)consentGDPRAppliesBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC22consentGDPRAppliesBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "collectedBool",
+ "printedName": "collectedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)collectedBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13collectedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)collectedBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13collectedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerConfig",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "AdSupport",
+ "printedName": "AdSupport",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "AVFoundation",
+ "printedName": "AVFoundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "CoreTelephony",
+ "printedName": "CoreTelephony",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "DeviceCheck",
+ "printedName": "DeviceCheck",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "SystemConfiguration",
+ "printedName": "SystemConfiguration",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "WebKit",
+ "printedName": "WebKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerDatapoints",
+ "printedName": "KVATrackerDatapoints",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC5startyyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleDisplayNameStringAdapter",
+ "printedName": "appMainBundleDisplayNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleIdentifierStringAdapter",
+ "printedName": "appMainBundleIdentifierStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleShortVersionStringAdapter",
+ "printedName": "appMainBundleShortVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleVersionStringAdapter",
+ "printedName": "appMainBundleVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appStoreReceiptDataAdapter",
+ "printedName": "appStoreReceiptDataAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "architectureStringAdapter",
+ "printedName": "architectureStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "batteryLevelPercentageIntAdapter",
+ "printedName": "batteryLevelPercentageIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "batteryStateStringAdapter",
+ "printedName": "batteryStateStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bootDateAdapter",
+ "printedName": "bootDateAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "carrierNameStringAdapter",
+ "printedName": "carrierNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "cellularTypeStringAdapter",
+ "printedName": "cellularTypeStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currentDateAdapter",
+ "printedName": "currentDateAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currentLocaleIdentifierStringAdapter",
+ "printedName": "currentLocaleIdentifierStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceLimitAdTrackingBoolAdapter",
+ "printedName": "deviceLimitAdTrackingBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "deviceLimitAdTrackingBool",
+ "printedName": "deviceLimitAdTrackingBool()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25deviceLimitAdTrackingBoolSbyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25deviceLimitAdTrackingBoolSbyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "deviceModelStringAdapter",
+ "printedName": "deviceModelStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceOrientationStringAdapter",
+ "printedName": "deviceOrientationStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceSystemNameStringAdapter",
+ "printedName": "deviceSystemNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "firstPreferredLanguageStringAdapter",
+ "printedName": "firstPreferredLanguageStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "hardwareMachineModelIdStringAdapter",
+ "printedName": "hardwareMachineModelIdStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "iabUSPrivacyStringAdapter",
+ "printedName": "iabUSPrivacyStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "idctDataAdapter",
+ "printedName": "idctDataAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "idfaString",
+ "printedName": "idfaString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC10idfaStringSSSgyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC10idfaStringSSSgyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "idfaStringAdapter",
+ "printedName": "idfaStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "idfvStringAdapter",
+ "printedName": "idfvStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "ipAddressStringAdapter",
+ "printedName": "ipAddressStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "localTimezoneNameStringAdapter",
+ "printedName": "localTimezoneNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenBrightnessNumberAdapter",
+ "printedName": "mainScreenBrightnessNumberAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenNativeBoundsHeightIntAdapter",
+ "printedName": "mainScreenNativeBoundsHeightIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenNativeBoundsWidthIntAdapter",
+ "printedName": "mainScreenNativeBoundsWidthIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "minimumOSVersionStringAdapter",
+ "printedName": "minimumOSVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networkConnectionTypeStringAdapter",
+ "printedName": "networkConnectionTypeStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "osGenuineBoolAdapter",
+ "printedName": "osGenuineBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "osVersionStringAdapter",
+ "printedName": "osVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "platformNameStringAdapter",
+ "printedName": "platformNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sdkGeneratedUserAgentStringAdapter",
+ "printedName": "sdkGeneratedUserAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userAgentStringAdapter",
+ "printedName": "userAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeNumberAdapter",
+ "printedName": "volumeNumberAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "vpnBoolAdapter",
+ "printedName": "vpnBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "webViewUserAgentStringAdapter",
+ "printedName": "webViewUserAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerDatapoints",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerDatapoints",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "DeviceCheck",
+ "printedName": "DeviceCheck",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerProduct",
+ "printedName": "KVATrackerProduct",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAProduct",
+ "printedName": "KochavaCore.KVAProduct",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAProduct"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(cpy)shared",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC6shared0A4Core10KVAProductCvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAProduct",
+ "printedName": "KochavaCore.KVAProduct",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAProduct"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(cm)shared",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC6shared0A4Core10KVAProductCvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedInstance",
+ "printedName": "sharedInstance",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvpZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvgZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerProduct",
+ "printedName": "KochavaTracker.KVATrackerProduct",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(im)init",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerProduct",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVASharedPropertyProvider",
+ "printedName": "KVASharedPropertyProvider",
+ "usr": "s:11KochavaCore25KVASharedPropertyProviderP",
+ "mangledName": "$s11KochavaCore25KVASharedPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventSender",
+ "printedName": "KVAEventSender",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(event:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender(im)sendEvent:",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP4send5eventyAA0C0C_tF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAEventSender>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "sendEvent:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KVAEventSenderProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "eventSender",
+ "printedName": "eventSender",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider(py)eventSender",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP05eventD0AA0cD0_pvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider(im)eventSender",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP05eventD0AA0cD0_pvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAEventSenderProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Date",
+ "printedName": "Date",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_sendDateString",
+ "printedName": "kva_sendDateString(fromRequestBodyDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DateV14KochavaTrackerE08kva_sendB6String25fromRequestBodyDictionarySSSDys11AnyHashableVypGSg_tF",
+ "mangledName": "$s10Foundation4DateV14KochavaTrackerE08kva_sendB6String25fromRequestBodyDictionarySSSDys11AnyHashableVypGSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:10Foundation4DateV",
+ "mangledName": "$s10Foundation4DateV",
+ "moduleName": "Foundation",
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "ReferenceConvertible",
+ "printedName": "ReferenceConvertible",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "ReferenceType",
+ "printedName": "ReferenceType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:10Foundation20ReferenceConvertibleP",
+ "mangledName": "$s10Foundation20ReferenceConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Strideable",
+ "printedName": "Strideable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Stride",
+ "printedName": "Stride",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sx",
+ "mangledName": "$sSx"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomReflectable",
+ "printedName": "CustomReflectable",
+ "usr": "s:s17CustomReflectableP",
+ "mangledName": "$ss17CustomReflectableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_CustomPlaygroundQuickLookable",
+ "printedName": "_CustomPlaygroundQuickLookable",
+ "usr": "s:s30_CustomPlaygroundQuickLookableP",
+ "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "CoarseConversionValue",
+ "printedName": "CoarseConversionValue",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_identifier",
+ "printedName": "kva_identifier()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So32SKAdNetworkCoarseConversionValuea14KochavaTrackerE14kva_identifierSSyF",
+ "mangledName": "$sSo32SKAdNetworkCoarseConversionValuea14KochavaTrackerE14kva_identifierSSyF",
+ "moduleName": "KochavaTracker",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "AccessControl",
+ "Available"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So32SKAdNetworkCoarseConversionValuea14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "mangledName": "$sSo32SKAdNetworkCoarseConversionValuea14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue",
+ "moduleName": "StoreKit",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "Available",
+ "Available",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "Sendable"
+ ],
+ "isFromExtension": true,
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSString",
+ "printedName": "Foundation.NSString",
+ "usr": "c:objc(cs)NSString"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_SwiftNewtypeWrapper",
+ "printedName": "_SwiftNewtypeWrapper",
+ "usr": "s:s20_SwiftNewtypeWrapperP",
+ "mangledName": "$ss20_SwiftNewtypeWrapperP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_HasCustomAnyHashableRepresentation",
+ "printedName": "_HasCustomAnyHashableRepresentation",
+ "usr": "s:s35_HasCustomAnyHashableRepresentationP",
+ "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
+ }
+ ]
+ }
+ ],
+ "json_format_version": 8
+ },
+ "ConstValues": [
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 582,
+ "length": 13,
+ "value": "\"Achievement\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 725,
+ "length": 10,
+ "value": "\"Ad Click\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 927,
+ "length": 13,
+ "value": "\"Add to Cart\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1141,
+ "length": 18,
+ "value": "\"Add to Wish List\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1337,
+ "length": 9,
+ "value": "\"Ad View\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1537,
+ "length": 16,
+ "value": "\"Checkout Start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1692,
+ "length": 17,
+ "value": "\"Consent Granted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1855,
+ "length": 8,
+ "value": "\"Custom\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1998,
+ "length": 11,
+ "value": "\"_Deeplink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2199,
+ "length": 16,
+ "value": "\"Level Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2403,
+ "length": 10,
+ "value": "\"Purchase\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2559,
+ "length": 13,
+ "value": "\"Push Opened\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2722,
+ "length": 15,
+ "value": "\"Push Received\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2916,
+ "length": 8,
+ "value": "\"Rating\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3128,
+ "length": 23,
+ "value": "\"Registration Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3335,
+ "length": 8,
+ "value": "\"Search\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3478,
+ "length": 13,
+ "value": "\"Start Trial\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3630,
+ "length": 11,
+ "value": "\"Subscribe\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3837,
+ "length": 19,
+ "value": "\"Tutorial Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 4034,
+ "length": 6,
+ "value": "\"View\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 260,
+ "length": 12,
+ "value": "\"KochavaTracker.KVAEventType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 3731,
+ "length": 11,
+ "value": "\"app_clips\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8505,
+ "length": 34,
+ "value": "\"AppClips.installDeeplinkWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8570,
+ "length": 23,
+ "value": "\"install_deeplink_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8658,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9473,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 9843,
+ "length": 38,
+ "value": "\"120cf7c7-e26a-4ec2-b842-2596873ba169\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10145,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12195,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13407,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13547,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1351,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 10837,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 16366,
+ "length": 10,
+ "value": "\"method_3\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 16999,
+ "length": 24,
+ "value": "\"AppleSearchAds.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 17054,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17106,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17193,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18725,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 19695,
+ "length": 52,
+ "value": "\"adapter.closure_collectAsynchronously - will start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 19839,
+ "length": 24,
+ "value": "\"method3AttributionBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 21741,
+ "length": 59,
+ "value": "\"adapter.closure_collectAsynchronously closure_didComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 22087,
+ "length": 102,
+ "value": "\"Collection duration for Apple Search Ads was \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 22180,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26101,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29459,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 288,
+ "length": 17,
+ "value": "\"KochavaTracker.KVAAppleSearchAds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3005,
+ "length": 16,
+ "value": "\"appleWatchBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3111,
+ "length": 11,
+ "value": "\"eventType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3150,
+ "length": 15,
+ "value": "\"eventTypeEnum\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3266,
+ "length": 14,
+ "value": "\"actionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3339,
+ "length": 20,
+ "value": "\"adCampaignIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3420,
+ "length": 22,
+ "value": "\"adCampaignNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3501,
+ "length": 20,
+ "value": "\"adDeviceTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3577,
+ "length": 17,
+ "value": "\"adGroupIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3652,
+ "length": 19,
+ "value": "\"adGroupNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3733,
+ "length": 23,
+ "value": "\"adMediationNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3847,
+ "length": 27,
+ "value": "\"adNetworkConversionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4036,
+ "length": 21,
+ "value": "\"adNetworkNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4115,
+ "length": 19,
+ "value": "\"adPlacementString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4187,
+ "length": 14,
+ "value": "\"adSizeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4254,
+ "length": 14,
+ "value": "\"adTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4444,
+ "length": 20,
+ "value": "\"appleWatchIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4539,
+ "length": 36,
+ "value": "\"appStoreReceiptBase64EncodedString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4636,
+ "length": 22,
+ "value": "\"backgroundBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4722,
+ "length": 23,
+ "value": "\"checkoutAsGuestString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4805,
+ "length": 21,
+ "value": "\"completedBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4896,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4951,
+ "length": 17,
+ "value": "\"contentIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5026,
+ "length": 19,
+ "value": "\"contentTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5100,
+ "length": 16,
+ "value": "\"currencyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5172,
+ "length": 17,
+ "value": "\"customEventName\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5237,
+ "length": 23,
+ "value": "\"customEventNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5328,
+ "length": 6,
+ "value": "\"date\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5375,
+ "length": 12,
+ "value": "\"dateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5445,
+ "length": 19,
+ "value": "\"descriptionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5522,
+ "length": 19,
+ "value": "\"destinationString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5608,
+ "length": 28,
+ "value": "\"durationTimeIntervalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5700,
+ "length": 9,
+ "value": "\"endDate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5753,
+ "length": 15,
+ "value": "\"endDateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5920,
+ "length": 16,
+ "value": "\"infoDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5999,
+ "length": 12,
+ "value": "\"infoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6071,
+ "length": 21,
+ "value": "\"itemAddedFromString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6144,
+ "length": 13,
+ "value": "\"levelString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6224,
+ "length": 28,
+ "value": "\"maxRatingValueDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6305,
+ "length": 12,
+ "value": "\"nameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6371,
+ "length": 15,
+ "value": "\"orderIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6439,
+ "length": 14,
+ "value": "\"originString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6511,
+ "length": 19,
+ "value": "\"payloadDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6601,
+ "length": 20,
+ "value": "\"priceDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6688,
+ "length": 19,
+ "value": "\"priceDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6770,
+ "length": 22,
+ "value": "\"quantityDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6858,
+ "length": 25,
+ "value": "\"ratingValueDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6941,
+ "length": 17,
+ "value": "\"receiptIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7017,
+ "length": 20,
+ "value": "\"referralFromString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7102,
+ "length": 26,
+ "value": "\"registrationMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7182,
+ "length": 15,
+ "value": "\"resultsString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7249,
+ "length": 13,
+ "value": "\"scoreString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7319,
+ "length": 18,
+ "value": "\"searchTermString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7405,
+ "length": 26,
+ "value": "\"serviceLocallyBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7482,
+ "length": 14,
+ "value": "\"sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7557,
+ "length": 22,
+ "value": "\"spatialXDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7642,
+ "length": 22,
+ "value": "\"spatialYDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7727,
+ "length": 22,
+ "value": "\"spatialZDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7815,
+ "length": 11,
+ "value": "\"startDate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7872,
+ "length": 17,
+ "value": "\"startDateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7943,
+ "length": 15,
+ "value": "\"successString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8008,
+ "length": 11,
+ "value": "\"uriString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8072,
+ "length": 14,
+ "value": "\"userIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8141,
+ "length": 16,
+ "value": "\"userNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8213,
+ "length": 17,
+ "value": "\"validatedString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43201,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43917,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47874,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 66658,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "StringLiteral",
+ "offset": 4541,
+ "length": 11,
+ "value": "\"adnetwork\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22940,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28211,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28370,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 13961,
+ "length": 42,
+ "value": "\"AppleSearchAdsMethod3.attributionAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14086,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16424,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 17988,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Array",
+ "offset": 18071,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 18115,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18876,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19137,
+ "length": 63,
+ "value": "\"attributionAdapter.closure_collectAsynchronously - will start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19304,
+ "length": 23,
+ "value": "\"retryWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19384,
+ "length": 18,
+ "value": "\"waitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19796,
+ "length": 38,
+ "value": "\"e81a6d7f-aad8-484c-a0b7-0e69b353b6db\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21012,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21026,
+ "length": 45,
+ "value": "\"AppleAdServicesAttributionGetNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21109,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21132,
+ "length": 35,
+ "value": "\"apple_ad_services_attribution_get\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21205,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21216,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21262,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21351,
+ "length": 12,
+ "value": "\"bodyObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21429,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 21495,
+ "length": 470,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Content-Type\"), (\"valueObject\", \"text\/plain\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22007,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22027,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22075,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22088,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22134,
+ "length": 25,
+ "value": "\"retryTimeIntervalSeries\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22226,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Array",
+ "offset": 22286,
+ "length": 123,
+ "value": "[\"apple_ad_services_attribution_get\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22451,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22565,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 22613,
+ "length": 103,
+ "value": "[(\"class\", \"NSDictionary\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22810,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23870,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23875,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 24033,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24950,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 25038,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 25388,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 25445,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 25552,
+ "length": 22,
+ "value": "\"non_mock_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 26007,
+ "length": 70,
+ "value": "\"attributionAdapter.closure_collectAsynchronously closure_didComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 27199,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 27276,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27334,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27361,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27386,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "FloatLiteral",
+ "offset": 27430,
+ "length": 7,
+ "value": "86400.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 28015,
+ "length": 38,
+ "value": "\"d1d3b1c3-6b3f-4467-aab5-66eaeb03135c\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32465,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37331,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41441,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 470,
+ "length": 24,
+ "value": "\"KochavaTracker.KVAAppleSearchAdsMethod3\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3Attribution.swift",
+ "kind": "StringLiteral",
+ "offset": 530,
+ "length": 35,
+ "value": "\"KochavaTracker.KVAAppleSearchAdsMethod3Attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 3815,
+ "length": 23,
+ "value": "\"app_limit_ad_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 6964,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 7032,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7086,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7111,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7226,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9823,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 8208,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 24322,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 24386,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24447,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 25237,
+ "length": 53,
+ "value": "\"AppTrackingTransparency.authorizationStatusWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 25321,
+ "length": 31,
+ "value": "\"att_authorization_status_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 25403,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26268,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 26757,
+ "length": 38,
+ "value": "\"120cf7c7-e26a-4ec2-b842-2596873ba169\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27046,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 27947,
+ "length": 58,
+ "value": "\"AppTrackingTransparency.requestTrackingAuthorizationTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 28036,
+ "length": 36,
+ "value": "\"att_request_tracking_authorization\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 28123,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 28227,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29161,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32089,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32128,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45881,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 55638,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 55778,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 5600,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 21386,
+ "length": 27,
+ "value": "\"Attribution.resultAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 21486,
+ "length": 134,
+ "value": "[\"TrackerConfig.retrieveTask\", \"Install.sendTask\", \"Attribution.resultRetrieveWaitTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21703,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22823,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 22989,
+ "length": 38,
+ "value": "\"b10d4939-511b-4fab-bd2f-0b1856f4453d\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24039,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24057,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24092,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24106,
+ "length": 30,
+ "value": "\"AttributionGetNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24150,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24173,
+ "length": 17,
+ "value": "\"get_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24204,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24227,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24245,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24310,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24346,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24656,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24697,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24717,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24741,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24754,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24776,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 24812,
+ "length": 57,
+ "value": "[\"get_attribution\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24887,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24900,
+ "length": 43,
+ "value": "\"https:\/\/control.kochava.com\/track\/kvquery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24961,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25023,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25129,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25142,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25179,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25204,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25320,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25333,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25371,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25386,
+ "length": 17,
+ "value": "\"get_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25485,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25498,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25542,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25557,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25643,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25656,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25699,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25724,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25848,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25861,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25903,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25928,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26044,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26057,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26103,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26128,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26195,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26214,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26300,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26313,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26362,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26387,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26441,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26460,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26546,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 26573,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26611,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26624,
+ "length": 15,
+ "value": "\"attempt_count\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26669,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26694,
+ "length": 39,
+ "value": "\"NetTransaction.attemptCountIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26763,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26782,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26868,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 26895,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26933,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26946,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26990,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27015,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27092,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27111,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27197,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27224,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27262,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27275,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27316,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27341,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27399,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27418,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27504,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27531,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27569,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27582,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27622,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27647,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27715,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27734,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27820,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27847,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27885,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27898,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27936,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27961,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28037,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28056,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28142,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28155,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28194,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28219,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28280,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28299,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28397,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28439,
+ "length": 7,
+ "value": "\"class\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28448,
+ "length": 22,
+ "value": "\"KVAAttributionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28488,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28545,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28556,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28579,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28633,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28648,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28679,
+ "length": 7,
+ "value": "\"retry\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28688,
+ "length": 2,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28758,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28790,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28808,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Dictionary",
+ "offset": 28844,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29336,
+ "length": 113,
+ "value": "\"Sending get_attribution at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29440,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29663,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29789,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29945,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30118,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30203,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30309,
+ "length": 7,
+ "value": "\"retry\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 30338,
+ "length": 4,
+ "value": "30.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 30379,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30656,
+ "length": 86,
+ "value": "\"Attribution results not ready, retrying in \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30733,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30890,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30942,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 31133,
+ "length": 36,
+ "value": "\"Attribution.resultRetrieveWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 31200,
+ "length": 34,
+ "value": "\"attribution_result_retrieve_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 31285,
+ "length": 84,
+ "value": "[\"Install.sendTask\", \"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31538,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31812,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31852,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 33282,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 33338,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 33748,
+ "length": 43,
+ "value": "\"resultRetrieveWaitTask - starting to wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 33859,
+ "length": 29,
+ "value": "\"attributionWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34016,
+ "length": 27,
+ "value": "\"remainingWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34383,
+ "length": 85,
+ "value": "\"Requesting attribution results in \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34459,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34719,
+ "length": 38,
+ "value": "\"8e3747ad-7d28-49e3-9b5f-79add1caaf16\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35842,
+ "length": 32,
+ "value": "\"Attribution.resultRetrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35905,
+ "length": 29,
+ "value": "\"attribution_result_retrieve\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35999,
+ "length": 36,
+ "value": "\"Attribution.resultRetrieveWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 36049,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 36081,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 36262,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36483,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36716,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36756,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37249,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 37394,
+ "length": 38,
+ "value": "\"4153b38f-dffd-4934-b61f-9c390d33527a\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 37534,
+ "length": 38,
+ "value": "\"e66e97ed-d69a-4939-89cc-c7c245759dc1\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41913,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44558,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45694,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttributionResult.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1340,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttributionResult.swift",
+ "kind": "StringLiteral",
+ "offset": 266,
+ "length": 20,
+ "value": "\"KochavaTracker.KVAAttributionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "StringLiteral",
+ "offset": 4847,
+ "length": 20,
+ "value": "\"custom_identifiers\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "StringLiteral",
+ "offset": 11821,
+ "length": 27,
+ "value": "\"CustomIdentifiers.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14494,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14958,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17337,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 8793,
+ "length": 11,
+ "value": "\"deeplinks\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30172,
+ "length": 19,
+ "value": "\"Deeplinks.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30222,
+ "length": 11,
+ "value": "\"deeplinks\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30267,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30695,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30713,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30748,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30762,
+ "length": 29,
+ "value": "\"DeeplinkClickNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30805,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30828,
+ "length": 16,
+ "value": "\"deeplink_click\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30858,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30869,
+ "length": 20,
+ "value": "\"serverUnrestricted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30903,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30926,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30944,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30959,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30977,
+ "length": 40,
+ "value": "\"transactionProcessingWaitEstablishBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31019,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31037,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31078,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31098,
+ "length": 5,
+ "value": "\"GET\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31121,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31134,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31156,
+ "length": 25,
+ "value": "\"retryTimeIntervalSeries\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31221,
+ "length": 29,
+ "value": "\"repeatFinalTimeIntervalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31252,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31279,
+ "length": 19,
+ "value": "\"timeIntervalArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 31300,
+ "length": 11,
+ "value": "[3.0, 10.0]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31347,
+ "length": 21,
+ "value": "\"urlDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 31386,
+ "length": 634,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"url\"), (\"valueSourceIdentifier\", \"Local.urlString\")], [(\"keyString\", \"type\"), (\"valueObject\", \"kochava_device_id\")], [(\"keyString\", \"device_id\"), (\"valueSourceIdentifier\", \"DeviceId.stringAdapter\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32038,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 32074,
+ "length": 56,
+ "value": "[\"deeplink_click\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32148,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32161,
+ "length": 7,
+ "value": "\"{url}\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32196,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 32220,
+ "length": 49,
+ "value": "[(\"class\", \"NSNull\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32283,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 32319,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32574,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32581,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32883,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32890,
+ "length": 48,
+ "value": "\"closure_clickNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33064,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 33071,
+ "length": 33,
+ "value": "\"clickNetTransaction not enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33281,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37053,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37067,
+ "length": 31,
+ "value": "\"DeeplinkProcessNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37112,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37135,
+ "length": 11,
+ "value": "\"smartlink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37160,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37171,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37193,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37234,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 37276,
+ "length": 450,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37744,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37764,
+ "length": 5,
+ "value": "\"GET\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37787,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 37823,
+ "length": 51,
+ "value": "[\"smartlink\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37892,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37905,
+ "length": 33,
+ "value": "\"https:\/\/smart.link\/v1\/links-sdk\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37966,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 37990,
+ "length": 54,
+ "value": "[(\"class\", \"KVADeeplink\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38058,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 38094,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38641,
+ "length": 19,
+ "value": "\"deeplinkURLString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38811,
+ "length": 6,
+ "value": "\"path\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45878,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 46839,
+ "length": 52,
+ "value": "\"Deeplinks.augmentDeferredPrefetchDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 46922,
+ "length": 24,
+ "value": "\"deeplinks_augmentation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47606,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49356,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 4390,
+ "length": 11,
+ "value": "\"device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 24193,
+ "length": 18,
+ "value": "\"DeviceId.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24234,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24271,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 24316,
+ "length": 16,
+ "value": "\"deviceAppGroup\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 25284,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 25339,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25392,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28894,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34428,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35479,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35525,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 3665,
+ "length": 8,
+ "value": "\"events\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9071,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9089,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9124,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9138,
+ "length": 21,
+ "value": "\"EventNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9173,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9196,
+ "length": 7,
+ "value": "\"event\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9217,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9240,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9258,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9273,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9291,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9332,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9352,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9376,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9389,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9411,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 9447,
+ "length": 84,
+ "value": "[\"event_by_name\", \"event\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9549,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9562,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9620,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9682,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9788,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9801,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9838,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9863,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9979,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9992,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10030,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10045,
+ "length": 7,
+ "value": "\"event\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10134,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10147,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10191,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10206,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10292,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10305,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10348,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10373,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10497,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10510,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10552,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10577,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10693,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10706,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10752,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10777,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10844,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10863,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10949,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10962,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11011,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11036,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11090,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11109,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11195,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11222,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11260,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11273,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11317,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11342,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11471,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11498,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11536,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11549,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11590,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11615,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11725,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11752,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11790,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11803,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11843,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11868,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11988,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12015,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12053,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12066,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12104,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12129,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12257,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12284,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12322,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12335,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12384,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12409,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12544,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12571,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12609,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12622,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12672,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12697,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12827,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12854,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12892,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12905,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12954,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12979,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13115,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13142,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13180,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13193,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13231,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13256,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13393,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13420,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13458,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13471,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13509,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13534,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13674,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13701,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13739,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13752,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13790,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13815,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13954,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13981,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14019,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14032,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14075,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14100,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14235,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14262,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14300,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14313,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14361,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14386,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14526,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14553,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14591,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14604,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14648,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14673,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14799,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14826,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14864,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14877,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14919,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14944,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15068,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15095,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15133,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15146,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15184,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15209,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15336,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15363,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15401,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15414,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15459,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15484,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15618,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15645,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15683,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15696,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15742,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15767,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15894,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15921,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15959,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15972,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16016,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16041,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16246,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16287,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16312,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16393,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16409,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16495,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16522,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16560,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16573,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16638,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16770,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16797,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16835,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16848,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16886,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16911,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17049,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17076,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17114,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17127,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17171,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17196,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17322,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17349,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17387,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17400,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17445,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17470,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17597,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17624,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17662,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17675,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17728,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17753,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17888,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17927,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17952,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18013,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18118,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18145,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18183,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18196,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18253,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18278,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18341,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18360,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18446,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18473,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18511,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18524,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18559,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18584,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18701,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18728,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18766,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18779,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18818,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18843,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18970,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18997,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19035,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19048,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19083,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19108,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19172,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19191,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19459,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19466,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19929,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19936,
+ "length": 14,
+ "value": "\"event is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20118,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 20125,
+ "length": 47,
+ "value": "\"closure_sendNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23372,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23558,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33280,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "StringLiteral",
+ "offset": 41019,
+ "length": 51,
+ "value": "\"AdNetworkConversion.extensionIntervalMaximumTimer\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41102,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41629,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41840,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42034,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42094,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42995,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57614,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 3993,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15395,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15413,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15448,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15462,
+ "length": 28,
+ "value": "\"IdentityLinkNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15504,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15527,
+ "length": 14,
+ "value": "\"identityLink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15555,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15578,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15596,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15611,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15629,
+ "length": 40,
+ "value": "\"transactionProcessingWaitEstablishBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15671,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15689,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15730,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15750,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15774,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15787,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15809,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 15845,
+ "length": 54,
+ "value": "[\"identityLink\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15917,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15930,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15988,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16050,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16156,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16169,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16206,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16231,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16347,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16360,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16398,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16413,
+ "length": 14,
+ "value": "\"identityLink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16509,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16522,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16566,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16581,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16667,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16680,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16719,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16744,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16805,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16824,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16910,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16923,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16966,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16991,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17115,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17128,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17170,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17195,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17311,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17324,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17370,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17395,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17462,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17481,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17567,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17580,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17629,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17654,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17708,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17727,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17813,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 17840,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17878,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17891,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17932,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17957,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18067,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18094,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18132,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18145,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18185,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18210,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18330,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18357,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18395,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18408,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18446,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18471,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18599,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18626,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18664,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18677,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18722,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18747,
+ "length": 42,
+ "value": "\"Local.identityLinkRegistrationDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19053,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19060,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19304,
+ "length": 42,
+ "value": "\"Local.identityLinkRegistrationDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19743,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19750,
+ "length": 23,
+ "value": "\"firstKeyString is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19949,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19956,
+ "length": 51,
+ "value": "\"closure_registerNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 20427,
+ "length": 44,
+ "value": "\"IdentityLink.registrationDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 20502,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20551,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23681,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23867,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 8098,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 25172,
+ "length": 31,
+ "value": "\"Install.lastDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 25603,
+ "length": 748,
+ "value": "[(\"DeviceId.stringAdapter\", \"kochava_device_id\"), (\"Tracker.deviceIdStringAdapter\", \"kochava_device_id\"), (\"TrackerGeneral.appGUIDStringAdapter\", \"kochava_app_id\"), (\"Tracker.appGUIDStringAdapter\", \"kochava_app_id\"), (\"KochavaTracker.standardVersionInfoString\", \"sdk_version\"), (\"TrackerDataPoints.appMainBundleVersionStringAdapter\", \"app_version\"), (\"Tracker.appMainBundleVersionStringAdapter\", \"app_version\"), (\"Install.sendDidCompleteDateUnixTime\", \"time\"), (\"TrackerDataPoints.osVersionStringAdapter\", \"os_version\"), (\"Tracker.osVersionStringAdapter\", \"os_version\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 26509,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 26874,
+ "length": 7,
+ "value": "\"count\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28070,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28088,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28123,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28137,
+ "length": 23,
+ "value": "\"InstallNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28174,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28197,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28220,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28243,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28261,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28326,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28657,
+ "length": 23,
+ "value": "\"updateWatchValuesBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28682,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28700,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28741,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28761,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28785,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28798,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28820,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 28856,
+ "length": 49,
+ "value": "[\"install\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28923,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28936,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28994,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29056,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29162,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29175,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29212,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29237,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29353,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29366,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29404,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29419,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29510,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29523,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29567,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29582,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29668,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29681,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29724,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29749,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29873,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29886,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29928,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29953,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30069,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30082,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30128,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30153,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30220,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30239,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30325,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30338,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30387,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30412,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30466,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30485,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30571,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30584,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30620,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30645,
+ "length": 27,
+ "value": "\"CustomIdentifiers.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30702,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30721,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30807,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30820,
+ "length": 11,
+ "value": "\"extension\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30861,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30886,
+ "length": 32,
+ "value": "\"System.appExtensionBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31000,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31027,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31065,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31078,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31126,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31151,
+ "length": 24,
+ "value": "\"AppleSearchAds.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31258,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31285,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31323,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31336,
+ "length": 19,
+ "value": "\"ad_services_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31385,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31410,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31539,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31566,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31604,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31617,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31671,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31696,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31772,
+ "length": 31,
+ "value": "\"valueSourcePropertyNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31805,
+ "length": 33,
+ "value": "\"startDate.unixTimeDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31921,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31948,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31986,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31999,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32043,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32068,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32145,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32164,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32250,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32277,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32315,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32328,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32369,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32394,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32452,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32471,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32557,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32584,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32622,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32635,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32673,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32698,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32774,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32793,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32879,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32906,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32944,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32957,
+ "length": 6,
+ "value": "\"idct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32993,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33018,
+ "length": 35,
+ "value": "\"TrackerDataPoints.idctDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33083,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33102,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33188,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33215,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33253,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33266,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33302,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33327,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33394,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33413,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33499,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33526,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33564,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33577,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33638,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33705,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33724,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33810,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33837,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33888,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33930,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33955,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34027,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34046,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34132,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34159,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34197,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34210,
+ "length": 9,
+ "value": "\"receipt\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34249,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34274,
+ "length": 46,
+ "value": "\"TrackerDataPoints.appStoreReceiptDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34402,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34429,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34467,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34480,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34519,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34544,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34682,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34709,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34747,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34760,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34805,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34830,
+ "length": 44,
+ "value": "\"IdentityLink.registrationDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34904,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34923,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35009,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35036,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35074,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35087,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35125,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35150,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35287,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35314,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35352,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35365,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35415,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35440,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35518,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35537,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35623,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35650,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35688,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35701,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35739,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35764,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35904,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35931,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35969,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35982,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36020,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36045,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36184,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36211,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36249,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36262,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36311,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36336,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36420,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36439,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36525,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36552,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36590,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36603,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36652,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36677,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36760,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36779,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36865,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36892,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36930,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36943,
+ "length": 10,
+ "value": "\"app_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36983,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37008,
+ "length": 57,
+ "value": "\"TrackerDataPoints.appMainBundleDisplayNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37147,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37174,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37212,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37225,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37268,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37293,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37428,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37455,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37493,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37506,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37554,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37579,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37719,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37746,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37784,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37797,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37841,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37866,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37992,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38019,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38057,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38070,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38112,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38137,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38261,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38288,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38326,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38339,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38379,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38404,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38489,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38508,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38594,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38621,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38659,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38672,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38722,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38747,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38814,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38833,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38919,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38946,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38984,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38997,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39050,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39075,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39157,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39176,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39262,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39289,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39327,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39340,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39382,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39407,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39529,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39556,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39594,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39607,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39645,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39670,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39745,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39764,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39850,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39877,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39915,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39928,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39973,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39998,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40080,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40099,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40185,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40212,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40250,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40263,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40309,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40334,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40409,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40428,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40514,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40541,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40579,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40592,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40636,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40661,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40788,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40815,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40853,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40866,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40907,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40932,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41013,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41066,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41082,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41246,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41286,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41311,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41391,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41410,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41496,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41523,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41561,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41574,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41612,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41637,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41723,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41742,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41828,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41855,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41893,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41906,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41950,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41975,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42049,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42068,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42154,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 42181,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42219,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42232,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42277,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42302,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42377,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42396,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42482,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 42509,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42547,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42560,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42638,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42708,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42727,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42813,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42826,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42865,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42890,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42951,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42970,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43056,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43083,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43121,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43134,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43191,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43216,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43279,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43298,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43384,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43397,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43433,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43458,
+ "length": 19,
+ "value": "\"Deeplinks.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43507,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43526,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43612,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43639,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43677,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43690,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43725,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43750,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43815,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43834,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43920,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43947,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43985,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43998,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44037,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44062,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44137,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44156,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44242,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44269,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44307,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44320,
+ "length": 18,
+ "value": "\"sdk_generated_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44368,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44393,
+ "length": 54,
+ "value": "\"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44529,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44556,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44594,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44607,
+ "length": 11,
+ "value": "\"system_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44648,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44673,
+ "length": 49,
+ "value": "\"TrackerDataPoints.webViewUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44804,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44831,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44869,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44882,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44917,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44942,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45006,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45025,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45123,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45155,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45173,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 45209,
+ "length": 70,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45700,
+ "length": 94,
+ "value": "\"Sending install at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "IntegerLiteral",
+ "offset": 45783,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45785,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46257,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46306,
+ "length": 14,
+ "value": "\"install_send\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46385,
+ "length": 53,
+ "value": "\"AppTrackingTransparency.authorizationStatusWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46452,
+ "length": 58,
+ "value": "\"AppTrackingTransparency.requestTrackingAuthorizationTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46524,
+ "length": 34,
+ "value": "\"AppClips.installDeeplinkWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46572,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 46835,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47056,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48665,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48712,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "FloatLiteral",
+ "offset": 48785,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 50913,
+ "length": 30,
+ "value": "\"Networking.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 50965,
+ "length": 27,
+ "value": "\"Install.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 51023,
+ "length": 24,
+ "value": "\"install_watched_values\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57920,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 61430,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 76339,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 5077,
+ "length": 20,
+ "value": "\"push_notifications\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 15885,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 15968,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16038,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16063,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 16107,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 16472,
+ "length": 38,
+ "value": "\"c35a4110-99b0-494f-a1f5-d8d5fe4b0bc4\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17290,
+ "length": 20,
+ "value": "\"CFBundleIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17376,
+ "length": 26,
+ "value": "\"com.apple.dt.xctest.tool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17871,
+ "length": 16,
+ "value": "\"not_determined\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18039,
+ "length": 8,
+ "value": "\"denied\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18203,
+ "length": 12,
+ "value": "\"authorized\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18552,
+ "length": 13,
+ "value": "\"provisional\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 20926,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 20997,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21054,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21079,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 21123,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21629,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21843,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22130,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22699,
+ "length": 12,
+ "value": "\"authorized\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22812,
+ "length": 13,
+ "value": "\"provisional\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22926,
+ "length": 16,
+ "value": "\"not_determined\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 23770,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 23842,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23902,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23927,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 23971,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 24127,
+ "length": 38,
+ "value": "\"b5fd3303-ad12-4700-82f7-ca1e1d02a686\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25158,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25176,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25211,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25225,
+ "length": 41,
+ "value": "\"PushNotificationsTokenAddNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25280,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25303,
+ "length": 16,
+ "value": "\"push_token_add\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25333,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25356,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25374,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25389,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25407,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25448,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25468,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25492,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25505,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25527,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 25563,
+ "length": 56,
+ "value": "[\"push_token_add\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25637,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25650,
+ "length": 41,
+ "value": "\"https:\/\/token.api.kochava.com\/token\/add\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25709,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25771,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25877,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25890,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25927,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25952,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26068,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26081,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26125,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26140,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26226,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26239,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26282,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26307,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26431,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26444,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26486,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26511,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26627,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26640,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26686,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26711,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26778,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26797,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26883,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26896,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26945,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26970,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27024,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27043,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27129,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27156,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27194,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27207,
+ "length": 7,
+ "value": "\"token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27244,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27269,
+ "length": 28,
+ "value": "\"Local.deviceTokenHexString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27379,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27406,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27444,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27457,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27497,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27522,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27654,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27681,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27719,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27732,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27770,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27795,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27933,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27960,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27998,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28011,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28052,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28077,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28187,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28214,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28265,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28305,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28330,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28450,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28477,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28515,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28528,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28594,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28619,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28753,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28780,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28818,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28831,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28884,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28909,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29031,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 29058,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29096,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29109,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29165,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29190,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29313,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29326,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29365,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29390,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29451,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29470,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29795,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29813,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29848,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29862,
+ "length": 44,
+ "value": "\"PushNotificationsTokenRemoveNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29920,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29943,
+ "length": 19,
+ "value": "\"push_token_remove\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29976,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29999,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30017,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30050,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30091,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30111,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30135,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30148,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30170,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 30206,
+ "length": 59,
+ "value": "[\"push_token_remove\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30283,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30296,
+ "length": 44,
+ "value": "\"https:\/\/token.api.kochava.com\/token\/remove\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30358,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30420,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30526,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30539,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30576,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30601,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30717,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30730,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30774,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30789,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30888,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30931,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30956,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31080,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31093,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31135,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31160,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31276,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31289,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31335,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31360,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31427,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31446,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31532,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31545,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31594,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31619,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31673,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31692,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31778,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 31805,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31843,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31856,
+ "length": 7,
+ "value": "\"token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31893,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31918,
+ "length": 28,
+ "value": "\"Local.deviceTokenHexString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32028,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32055,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32093,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32106,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32146,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32171,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32303,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32330,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32368,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32381,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32419,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32444,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32582,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32609,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32647,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32660,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32701,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32726,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32836,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32863,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32901,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32914,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32954,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32979,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33099,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33126,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33164,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33177,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33243,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33268,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33402,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33429,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33467,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33480,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33533,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33558,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33680,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33707,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33745,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33758,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33814,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33839,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33962,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33975,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34014,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34039,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34100,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34119,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34638,
+ "length": 37,
+ "value": "\"PushNotifications.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34706,
+ "length": 35,
+ "value": "\"push_notifications_watched_values\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 35490,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Dictionary",
+ "offset": 45029,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45052,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45127,
+ "length": 9,
+ "value": "\"KVAPE-U\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45319,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45512,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46114,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 46212,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46489,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversionEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 311,
+ "length": 27,
+ "value": "\"KochavaTracker.KVAAdNetworkConversionEvent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversionLockWindow.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8740,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 4179,
+ "length": 9,
+ "value": "\"general\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 18272,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 18340,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18390,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19138,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19152,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19187,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19210,
+ "length": 7,
+ "value": "\"basic\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19231,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19242,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19264,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19329,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19365,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19920,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "Dictionary",
+ "offset": 19943,
+ "length": 728,
+ "value": "[(\"headerDictionaryFormat\", [(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"User-Agent\"), (\"valueSourceIdentifier\", \"TrackerDataPoints.userAgentStringAdapter\")]])])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20685,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20727,
+ "length": 7,
+ "value": "\"class\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20736,
+ "length": 14,
+ "value": "\"NSDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20768,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "Dictionary",
+ "offset": 20803,
+ "length": 54,
+ "value": "[(\"success\", \"1\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20875,
+ "length": 21,
+ "value": "\"httpStatusCodeLocal\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "IntegerLiteral",
+ "offset": 20898,
+ "length": 3,
+ "value": "200"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21115,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 21431,
+ "length": 52,
+ "value": "\"TrackerGeneral.netTransactionDidSucceedBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21606,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 21675,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21787,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 22294,
+ "length": 41,
+ "value": "\"TrackerGeneral.partnerNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 22366,
+ "length": 14,
+ "value": "\"partner_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22414,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23235,
+ "length": 45,
+ "value": "\"TrackerGeneral.startSequenceDidCompleteTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23311,
+ "length": 16,
+ "value": "\"start_sequence\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23392,
+ "length": 32,
+ "value": "\"Attribution.resultRetrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23438,
+ "length": 25,
+ "value": "\"TrackerUpdates.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23477,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23509,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24258,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24340,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24378,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30297,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30557,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30685,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32330,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 32589,
+ "length": 41,
+ "value": "\"TrackerGeneral.startSequenceDidComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotificationsToken.swift",
+ "kind": "StringLiteral",
+ "offset": 280,
+ "length": 25,
+ "value": "\"KochavaTracker.KVAPushNotificationsToken\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "StringLiteral",
+ "offset": 29702,
+ "length": 22,
+ "value": "\"KVASession.didMutate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 34486,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 34653,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36077,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36238,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 39830,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40846,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "FloatLiteral",
+ "offset": 41464,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "StringLiteral",
+ "offset": 262,
+ "length": 10,
+ "value": "\"KochavaTracker.KVASession\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 5162,
+ "length": 10,
+ "value": "\"sessions\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 25412,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 25490,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25538,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25783,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 26161,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 26238,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26280,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "FloatLiteral",
+ "offset": 26849,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27611,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27629,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27664,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27678,
+ "length": 28,
+ "value": "\"SessionBeginNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27720,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27743,
+ "length": 15,
+ "value": "\"session_begin\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27772,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27795,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27813,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27828,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27846,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27887,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27907,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27931,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27944,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27966,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 28002,
+ "length": 86,
+ "value": "[\"session_begin\", \"session\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28106,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28119,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28177,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28239,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28345,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28358,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28395,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28420,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28536,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28549,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28587,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28602,
+ "length": 9,
+ "value": "\"session\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28693,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28706,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28750,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28765,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28851,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28864,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28907,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28932,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29056,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29069,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29111,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29136,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29265,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29311,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29336,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29403,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29422,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29508,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29521,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29570,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29595,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29649,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29668,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29754,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 29781,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29819,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29832,
+ "length": 8,
+ "value": "\"source\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29870,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29895,
+ "length": 20,
+ "value": "\"Local.sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29997,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30024,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30062,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30075,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30116,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30141,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30251,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30278,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30316,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30329,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30369,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30394,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30514,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30541,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30579,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30592,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30630,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "IntegerLiteral",
+ "offset": 30645,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30728,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30755,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30793,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30806,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30855,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30880,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31015,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31042,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31080,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31093,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31143,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31168,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31298,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31325,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31363,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31376,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31425,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31450,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31586,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31613,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31651,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31664,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31702,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31727,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31864,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31891,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31929,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31942,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31980,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32005,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32145,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32172,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32210,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32223,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32261,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32286,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32425,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32452,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32490,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32503,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32546,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32571,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32706,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32733,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32771,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32784,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32832,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32857,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32997,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33024,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33062,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33075,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33119,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33144,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33270,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33297,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33335,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33348,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33390,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33415,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33539,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33566,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33604,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33617,
+ "length": 7,
+ "value": "\"state\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33654,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33669,
+ "length": 8,
+ "value": "\"resume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33759,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33786,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33824,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33837,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33875,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33900,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34027,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34054,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34092,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34105,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34150,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34175,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34309,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34336,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34374,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34387,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34433,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34458,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34585,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34612,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34650,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34663,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34707,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34732,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34859,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34886,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34924,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34937,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34978,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35003,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35084,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35100,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35186,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35213,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35251,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35264,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35304,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35329,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35461,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35488,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35526,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35539,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35577,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35602,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35740,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35767,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35805,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35818,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35862,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35887,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36013,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36040,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36078,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36091,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36136,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36161,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36288,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36315,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36353,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36366,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36419,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36444,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36566,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36593,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36631,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36644,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36679,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36704,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36821,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36848,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36886,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36899,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36938,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36963,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37090,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37103,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37142,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37167,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37228,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37247,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37333,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 37360,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37398,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37411,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37468,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37493,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37556,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37575,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37661,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 37688,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37726,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37739,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37774,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37799,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37863,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37882,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38215,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38233,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38268,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38282,
+ "length": 26,
+ "value": "\"SessionEndNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38322,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38345,
+ "length": 13,
+ "value": "\"session_end\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38372,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38395,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38413,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38428,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38446,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38487,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38507,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38531,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38544,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38566,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 38602,
+ "length": 84,
+ "value": "[\"session_end\", \"session\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38704,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38717,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38775,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38837,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38943,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38956,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38993,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39018,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39134,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39147,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39185,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39200,
+ "length": 9,
+ "value": "\"session\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39291,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39304,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39348,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39363,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39449,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39462,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39505,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39530,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39654,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39667,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39709,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39734,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39850,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39863,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39909,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39934,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40001,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40020,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40106,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40119,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40168,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40193,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40247,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40266,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40352,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40379,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40417,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40430,
+ "length": 8,
+ "value": "\"source\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40468,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40493,
+ "length": 20,
+ "value": "\"Local.sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40595,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40622,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40660,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40673,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40714,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40739,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40849,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40876,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40914,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40927,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40967,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40992,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41112,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41139,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41177,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41190,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41228,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41253,
+ "length": 22,
+ "value": "\"Local.upTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41357,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41384,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41422,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41435,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41484,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41509,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41644,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41671,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41709,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41722,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41772,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41797,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41927,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41954,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41992,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42005,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42054,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42079,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42215,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42242,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42280,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42293,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42331,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42356,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42493,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42520,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42558,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42571,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42609,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42634,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42774,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42801,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42839,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42852,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42890,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42915,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43054,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43081,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43119,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43132,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43175,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43200,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43335,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43362,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43400,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43413,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43461,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43486,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43626,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43653,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43691,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43704,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43748,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43773,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43899,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43926,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43964,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43977,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44019,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44044,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44246,
+ "length": 7,
+ "value": "\"state\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44283,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44298,
+ "length": 7,
+ "value": "\"pause\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44387,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44414,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44452,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44465,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44503,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44528,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44655,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44682,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44720,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44733,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44778,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44803,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44937,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44964,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45002,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45015,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45061,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45086,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45213,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45240,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45278,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45291,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45335,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45360,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45487,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45514,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45552,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45565,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45606,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45631,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45712,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45728,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45814,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45841,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45879,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45892,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45932,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45957,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46089,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46116,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46154,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46167,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46205,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46230,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46368,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46395,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46433,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46446,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46490,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46515,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46641,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46668,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46706,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46719,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46764,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46789,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46916,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46943,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46981,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46994,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47047,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47072,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47194,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 47221,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47259,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47272,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47307,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47332,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47449,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 47476,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47514,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47527,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47566,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47591,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47718,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47731,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47767,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47792,
+ "length": 24,
+ "value": "\"Local.reportDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47898,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47911,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47950,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47975,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48036,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48055,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48141,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 48168,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48206,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48219,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48276,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48301,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48364,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48383,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48469,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 48496,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48534,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48547,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48582,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48607,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48671,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48690,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56787,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69106,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47976,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48205,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48239,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 48835,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48877,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48929,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49122,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49156,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 50551,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50834,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50989,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 51095,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54382,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 54389,
+ "length": 64,
+ "value": "\"privacy denies event name '\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 54451,
+ "length": 3,
+ "value": "\"'\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56462,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 56469,
+ "length": 73,
+ "value": "\"privacy denies identity link name '\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 56540,
+ "length": 3,
+ "value": "\"'\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 60725,
+ "length": 11,
+ "value": "\"send_date\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67508,
+ "length": 17,
+ "value": "\"Tracker.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67556,
+ "length": 9,
+ "value": "\"tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67639,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67717,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67750,
+ "length": 9,
+ "value": "\"Tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67804,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 67849,
+ "length": 4,
+ "value": "0.25"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67901,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68508,
+ "length": 31,
+ "value": "\"KVATracker.mutatorTokenString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68793,
+ "length": 35,
+ "value": "\"Tracker.sharedInstanceBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68859,
+ "length": 30,
+ "value": "\"tracker_shared_instance_bool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 68923,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 69466,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 69525,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69570,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 77075,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78333,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "IntegerLiteral",
+ "offset": 79584,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 4633,
+ "length": 8,
+ "value": "\"config\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 20789,
+ "length": 33,
+ "value": "\"TrackerConfig.dictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20905,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20932,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21443,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 21613,
+ "length": 38,
+ "value": "\"d779849f-fe1d-4690-8edd-e3179914defa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22851,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22869,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22904,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22918,
+ "length": 20,
+ "value": "\"InitNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22952,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22975,
+ "length": 6,
+ "value": "\"init\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22995,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23006,
+ "length": 20,
+ "value": "\"serverUnrestricted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23040,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23087,
+ "length": 15,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23116,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23157,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23177,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23201,
+ "length": 33,
+ "value": "\"privacyRedactionKeySuffixString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23236,
+ "length": 9,
+ "value": "\" (init)\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23263,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23276,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23298,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23334,
+ "length": 46,
+ "value": "[\"init\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23398,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23411,
+ "length": 50,
+ "value": "\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23479,
+ "length": 14,
+ "value": "\"_2_urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23495,
+ "length": 197,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"i\", \"t\", \"-\", \"t\", \"e\", \"s\", \"t\", \"i\", \"n\", \"g\", \".\", \"a\", \"p\", \"i\", \".\", \"k\", \"o\", \"c\", \"h\", \"a\", \"v\", \"a\", \".\", \"c\", \"o\", \"m\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23710,
+ "length": 14,
+ "value": "\"_3_urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23726,
+ "length": 137,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \":\", \"\/\", \"\/\", \"l\", \"o\", \"c\", \"a\", \"l\", \"h\", \"o\", \"s\", \"t\", \":\", \"8\", \"3\", \"1\", \"5\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23881,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 23923,
+ "length": 666,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"User-Agent\"), (\"valueSourceIdentifier\", \"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24607,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24669,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24775,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24788,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24825,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24850,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24966,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24979,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25017,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25032,
+ "length": 6,
+ "value": "\"init\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25120,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25133,
+ "length": 10,
+ "value": "\"products\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25173,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25198,
+ "length": 39,
+ "value": "\"ProductController.productArrayAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25319,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25332,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25376,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25391,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25477,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25490,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25533,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25558,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25682,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25695,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25737,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25762,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25878,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25891,
+ "length": 13,
+ "value": "\"bundle_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25934,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25959,
+ "length": 27,
+ "value": "\"KochavaTracker.bundleType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26068,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26081,
+ "length": 13,
+ "value": "\"instance_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26124,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26149,
+ "length": 38,
+ "value": "\"Networking.instanceIdentifierAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26269,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26282,
+ "length": 17,
+ "value": "\"shared_instance\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26329,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26354,
+ "length": 35,
+ "value": "\"Tracker.sharedInstanceBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26471,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26484,
+ "length": 12,
+ "value": "\"storage_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26526,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26551,
+ "length": 27,
+ "value": "\"Tracker.storageIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26660,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26673,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26719,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26744,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26811,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26830,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26916,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26929,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26978,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27003,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27057,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27076,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27162,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27175,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27217,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27242,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27314,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27333,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27419,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 27446,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27484,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27497,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27541,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27566,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27643,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27662,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27748,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27761,
+ "length": 11,
+ "value": "\"extension\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27802,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27827,
+ "length": 32,
+ "value": "\"System.appExtensionBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27941,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 27968,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28006,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28019,
+ "length": 14,
+ "value": "\"partner_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28063,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28088,
+ "length": 41,
+ "value": "\"TrackerGeneral.partnerNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28211,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28238,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28276,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28289,
+ "length": 10,
+ "value": "\"platform\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28329,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28354,
+ "length": 45,
+ "value": "\"TrackerDataPoints.platformNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28481,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28508,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28546,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28559,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28600,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28625,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28683,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28702,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28788,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28815,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28853,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28866,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28906,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28931,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28999,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29018,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29104,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29131,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29169,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29182,
+ "length": 13,
+ "value": "\"system_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29225,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29250,
+ "length": 49,
+ "value": "\"TrackerDataPoints.deviceSystemNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29381,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29408,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29446,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29459,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29497,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29522,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29598,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29617,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29703,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29730,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29768,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29781,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29820,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29845,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29983,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30010,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30048,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30061,
+ "length": 16,
+ "value": "\"min_os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30107,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30132,
+ "length": 49,
+ "value": "\"TrackerDataPoints.minimumOSVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30263,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30290,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30328,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30341,
+ "length": 14,
+ "value": "\"last_install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30385,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30410,
+ "length": 31,
+ "value": "\"Install.lastDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30471,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30490,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30576,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30603,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30641,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30654,
+ "length": 5,
+ "value": "\"url\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30689,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30714,
+ "length": 33,
+ "value": "\"NetTransaction.urlStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30777,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30796,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30882,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30909,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30947,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30960,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31002,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31027,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31151,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 31178,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31216,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31229,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31267,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31292,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31429,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 31456,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31494,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31507,
+ "length": 24,
+ "value": "\"deeplinks_augmentation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31561,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31586,
+ "length": 52,
+ "value": "\"Deeplinks.augmentDeferredPrefetchDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31720,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31733,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31772,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31797,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31858,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31877,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31975,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32017,
+ "length": 18,
+ "value": "\"localAllowedBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32037,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32060,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32117,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32128,
+ "length": 3,
+ "value": "\"1\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32153,
+ "length": 9,
+ "value": "\"general\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 32184,
+ "length": 68,
+ "value": "[(\"sdk_disabled\", true)]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32298,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32330,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32348,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 32384,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32469,
+ "length": 16,
+ "value": "\"variationArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32539,
+ "length": 11,
+ "value": "\"start_ymd\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32552,
+ "length": 10,
+ "value": "\"20200101\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32584,
+ "length": 6,
+ "value": "\"urls\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32638,
+ "length": 50,
+ "value": "\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 32714,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"l\", \"i\", \"f\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 32889,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33064,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"a\", \"k\", \"i\", \"s\", \"i\", \"n\", \"n\", \".\", \"i\", \"n\", \"f\", \"o\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33239,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33414,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"a\", \"k\", \"i\", \"s\", \"i\", \"n\", \"n\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33589,
+ "length": 145,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"x\", \"y\", \"z\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33760,
+ "length": 153,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"s\", \"t\", \"o\", \"r\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33939,
+ "length": 153,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"w\", \"o\", \"r\", \"l\", \"d\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34172,
+ "length": 11,
+ "value": "\"start_ymd\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34185,
+ "length": 10,
+ "value": "\"20250101\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34217,
+ "length": 6,
+ "value": "\"urls\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 34245,
+ "length": 98,
+ "value": "[\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35059,
+ "length": 87,
+ "value": "\"Sending kvinit at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35120,
+ "length": 7,
+ "value": "\" seconds to \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35144,
+ "length": 1,
+ "value": "\")\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35777,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35836,
+ "length": 17,
+ "value": "\"config_retrieve\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36387,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 36727,
+ "length": 38,
+ "value": "\"13783265-a6db-4d2e-885d-a36435446793\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 36867,
+ "length": 38,
+ "value": "\"85248e1d-5821-4bc4-93ef-a01c57e357bc\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 37307,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43057,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43702,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45249,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 3875,
+ "length": 12,
+ "value": "\"datapoints\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 15907,
+ "length": 57,
+ "value": "\"TrackerDataPoints.appMainBundleDisplayNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 15995,
+ "length": 10,
+ "value": "\"app_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16039,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16177,
+ "length": 21,
+ "value": "\"CFBundleDisplayName\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16232,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16908,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16995,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17038,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17176,
+ "length": 20,
+ "value": "\"CFBundleIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17230,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17951,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18040,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18092,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18117,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18255,
+ "length": 28,
+ "value": "\"CFBundleShortVersionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18317,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19024,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19108,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19155,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19180,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19318,
+ "length": 17,
+ "value": "\"CFBundleVersion\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19369,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19959,
+ "length": 46,
+ "value": "\"TrackerDataPoints.appStoreReceiptDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20036,
+ "length": 9,
+ "value": "\"receipt\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20079,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20808,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20884,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20932,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21611,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21694,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21743,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 21787,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21999,
+ "length": 38,
+ "value": "\"a9ea8db5-bb74-4a70-aada-5de7f7efefe4\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22276,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 22413,
+ "length": 5,
+ "value": "100.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 23688,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 23764,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23814,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 23858,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24070,
+ "length": 38,
+ "value": "\"4f413e0a-ec98-4ce0-8525-9ed986f732b9\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24347,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24580,
+ "length": 13,
+ "value": "\"discharging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24693,
+ "length": 10,
+ "value": "\"charging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24799,
+ "length": 6,
+ "value": "\"full\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24945,
+ "length": 11,
+ "value": "\"nobattery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26007,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26073,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26112,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 26156,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26913,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26988,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27036,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 27080,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 28677,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 28753,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28802,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 28846,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 30158,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 30227,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30271,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 31161,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 31248,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31290,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31315,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 31359,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 32054,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 32137,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32194,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32219,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 32263,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 34261,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 34336,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34384,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 35206,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 35285,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35339,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 35383,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36272,
+ "length": 11,
+ "value": "\"landscape\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36319,
+ "length": 10,
+ "value": "\"portrait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36635,
+ "length": 38,
+ "value": "\"84ae1223-4901-4632-a982-f5c3ccfcd78d\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 37541,
+ "length": 49,
+ "value": "\"TrackerDataPoints.deviceSystemNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 37621,
+ "length": 13,
+ "value": "\"system_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37668,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 38304,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 38390,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38434,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38459,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 38503,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39056,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39142,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39184,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39866,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39942,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39985,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 40212,
+ "length": 21,
+ "value": "\"IABUSPrivacy_String\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40284,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40419,
+ "length": 3,
+ "value": "128"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 41038,
+ "length": 35,
+ "value": "\"TrackerDataPoints.idctDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 41104,
+ "length": 6,
+ "value": "\"idct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41144,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 41188,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 42922,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 42990,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43030,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43055,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 43099,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 44367,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 44435,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44475,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44500,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 44544,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 45410,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 45483,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45529,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46024,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46105,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46149,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46174,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 46218,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46877,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46961,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47014,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 47058,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 48228,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 48317,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48359,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 48403,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 49170,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 49258,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49300,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 49344,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50154,
+ "length": 49,
+ "value": "\"TrackerDataPoints.minimumOSVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50234,
+ "length": 16,
+ "value": "\"min_os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50284,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50422,
+ "length": 18,
+ "value": "\"MinimumOSVersion\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51119,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51204,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 51257,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 51301,
+ "length": 4,
+ "value": "30.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "Array",
+ "offset": 51538,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51649,
+ "length": 16,
+ "value": "\"www.google.com\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 52032,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52102,
+ "length": 10,
+ "value": "\"cellular\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 52192,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52262,
+ "length": 6,
+ "value": "\"wifi\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52376,
+ "length": 6,
+ "value": "\"none\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53095,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53166,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53212,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53237,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53452,
+ "length": 11,
+ "value": "\"\/bin\/bash\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53465,
+ "length": 3,
+ "value": "\"r\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 54739,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 54812,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54858,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54883,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55020,
+ "length": 66,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55051,
+ "length": 1,
+ "value": "\" \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55085,
+ "length": 14,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "Dictionary",
+ "offset": 55714,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56399,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57238,
+ "length": 45,
+ "value": "\"TrackerDataPoints.platformNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57314,
+ "length": 10,
+ "value": "\"platform\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57358,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57502,
+ "length": 13,
+ "value": "\"ios-appclip\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57547,
+ "length": 5,
+ "value": "\"ios\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 66149,
+ "length": 54,
+ "value": "\"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 66234,
+ "length": 18,
+ "value": "\"sdk_generated_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 66286,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 67293,
+ "length": 42,
+ "value": "\"TrackerDataPoints.userAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 67366,
+ "length": 12,
+ "value": "\"User-Agent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67412,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67873,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 68926,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 69002,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69044,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 69088,
+ "length": 4,
+ "value": "10.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 70076,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 70141,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 70180,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 70224,
+ "length": 4,
+ "value": "0.25"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 70495,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71266,
+ "length": 5,
+ "value": "\"tun\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71331,
+ "length": 5,
+ "value": "\"tap\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71396,
+ "length": 7,
+ "value": "\"ipsec\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71463,
+ "length": 5,
+ "value": "\"ppp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 72438,
+ "length": 49,
+ "value": "\"TrackerDataPoints.webViewUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 72518,
+ "length": 11,
+ "value": "\"system_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 72563,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 72590,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73183,
+ "length": 38,
+ "value": "\"4544725c-203c-45d8-954c-7607ff31124b\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73480,
+ "length": 15,
+ "value": "\"<\/html>\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73558,
+ "length": 21,
+ "value": "\"navigator.userAgent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74049,
+ "length": 22,
+ "value": "\"User Agent Persisted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74102,
+ "length": 26,
+ "value": "\"User Agent Not Persisted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74462,
+ "length": 17,
+ "value": "\"userAgentString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 75025,
+ "length": 84,
+ "value": "\"Collection duration for User Agent was \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 75100,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78535,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78700,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "StringLiteral",
+ "offset": 3219,
+ "length": 9,
+ "value": "\"logging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11400,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11528,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Array",
+ "offset": 2207,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2319,
+ "length": 14,
+ "value": "\"AVFoundation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2443,
+ "length": 9,
+ "value": "\"Battery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2569,
+ "length": 15,
+ "value": "\"CoreTelephony\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2848,
+ "length": 18,
+ "value": "\"ScreenAttributes\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 3001,
+ "length": 18,
+ "value": "\"WebViewUserAgent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 3121,
+ "length": 9,
+ "value": "\"Tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3833,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4036,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4283,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4544,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4888,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5019,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5287,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5539,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6055,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6271,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6556,
+ "length": 51,
+ "value": "\"COMPILER_FLAG_APP_TRACKING_TRANSPARENCY_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6691,
+ "length": 28,
+ "value": "\"COMPILER_FLAG_AVFOUNDATION\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6798,
+ "length": 23,
+ "value": "\"COMPILER_FLAG_BATTERY\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6906,
+ "length": 30,
+ "value": "\"COMPILER_FLAG_CORE_TELEPHONY\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7022,
+ "length": 31,
+ "value": "\"COMPILER_FLAG_CRASH_REPORTING\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7138,
+ "length": 30,
+ "value": "\"COMPILER_FLAG_IDCT_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7256,
+ "length": 33,
+ "value": "\"COMPILER_FLAG_SCREEN_ATTRIBUTES\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7382,
+ "length": 39,
+ "value": "\"COMPILER_FLAG_SKADNETWORK_4_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7509,
+ "length": 35,
+ "value": "\"COMPILER_FLAG_WEB_VIEW_USER_AGENT\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Array",
+ "offset": 7807,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7841,
+ "length": 21,
+ "value": "\"KVAAdNetworkProduct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7935,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8296,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8448,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8486,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8558,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Dictionary",
+ "offset": 8788,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 8905,
+ "length": 32,
+ "value": "\"didInvalidateSharedTrackerBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8941,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 3448,
+ "length": 9,
+ "value": "\"updates\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12096,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12114,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12149,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12163,
+ "length": 22,
+ "value": "\"UpdateNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12199,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12222,
+ "length": 8,
+ "value": "\"update\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12244,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12267,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12285,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12300,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12318,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12359,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12379,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12403,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12416,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12438,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 12474,
+ "length": 48,
+ "value": "[\"update\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12540,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12553,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12611,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12673,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12779,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12792,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12829,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12854,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12970,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12983,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13021,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13036,
+ "length": 8,
+ "value": "\"update\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13126,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13139,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13183,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13198,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13284,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13297,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13340,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13365,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13489,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13502,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13544,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13569,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13685,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13698,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13744,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13769,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13836,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13855,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13941,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13954,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14003,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14028,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14082,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14101,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14187,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14214,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14265,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14309,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14334,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14463,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14490,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14528,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14541,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14582,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14607,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14717,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14744,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14782,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14795,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14835,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14860,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14980,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15007,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15045,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15058,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15096,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15121,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15249,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15276,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15314,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15327,
+ "length": 19,
+ "value": "\"ad_services_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15376,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15401,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15477,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15502,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15589,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15616,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15654,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15667,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15721,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15746,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15822,
+ "length": 31,
+ "value": "\"valueSourcePropertyNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15855,
+ "length": 33,
+ "value": "\"startDate.unixTimeDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15918,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15943,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16030,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16057,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16095,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16108,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16158,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16183,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16250,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16275,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16362,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16389,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16427,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16440,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16476,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16501,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16568,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16593,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16680,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16707,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16745,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16758,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16794,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16819,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16886,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16911,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16998,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17025,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17063,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17076,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17119,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17144,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17227,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17252,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17339,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17366,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17404,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17417,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17465,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17490,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17578,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17603,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17690,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17717,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17755,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17768,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17810,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17835,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17907,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17932,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18019,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18046,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18084,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18097,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18150,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18175,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18257,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18282,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18369,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18396,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18434,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18447,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18489,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18514,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18584,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18609,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18696,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18723,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18761,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18774,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18814,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18839,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18924,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18949,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19036,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19063,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19101,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19114,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19154,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19179,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19259,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19284,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19371,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19398,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19436,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19449,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19487,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19512,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19598,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19623,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19710,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19723,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19762,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19787,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19848,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19867,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19953,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19980,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20018,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20031,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20088,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20113,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20176,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20195,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20819,
+ "length": 25,
+ "value": "\"TrackerUpdates.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20879,
+ "length": 14,
+ "value": "\"updates_send\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20970,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 21006,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 21288,
+ "length": 60,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21671,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21785,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24281,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25216,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25356,
+ "length": 5,
+ "value": "false"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface
new file mode 100644
index 0000000..74f5099
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface
@@ -0,0 +1,851 @@
+// swift-interface-format-version: 1.0
+// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
+// swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name KochavaTracker
+// swift-module-flags-ignorable: -enable-bare-slash-regex
+import AVFoundation
+import AdServices
+import AdSupport
+import CoreTelephony
+import DeviceCheck
+import Foundation
+import JavaScriptCore
+import KochavaCore
+@_exported import KochavaTracker
+import StoreKit
+import Swift
+import SystemConfiguration
+import UIKit
+import UserNotifications
+import WebKit
+import _Concurrency
+import _StringProcessing
+@_hasMissingDesignatedInitializers @objc(KVAEventType) final public class KVAEventType : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ @objc public static let achievement: KochavaTracker.KVAEventType
+ @objc public static let adClick: KochavaTracker.KVAEventType
+ @objc public static let addToCart: KochavaTracker.KVAEventType
+ @objc public static let addToWishList: KochavaTracker.KVAEventType
+ @objc public static let adView: KochavaTracker.KVAEventType
+ @objc public static let checkoutStart: KochavaTracker.KVAEventType
+ @objc public static let consentGranted: KochavaTracker.KVAEventType
+ @objc public static let custom: KochavaTracker.KVAEventType
+ @objc public static let deeplink: KochavaTracker.KVAEventType
+ @objc public static let levelComplete: KochavaTracker.KVAEventType
+ @objc public static let purchase: KochavaTracker.KVAEventType
+ @objc public static let pushOpened: KochavaTracker.KVAEventType
+ @objc public static let pushReceived: KochavaTracker.KVAEventType
+ @objc public static let rating: KochavaTracker.KVAEventType
+ @objc public static let registrationComplete: KochavaTracker.KVAEventType
+ @objc public static let search: KochavaTracker.KVAEventType
+ @objc public static let startTrial: KochavaTracker.KVAEventType
+ @objc public static let subscribe: KochavaTracker.KVAEventType
+ @objc public static let tutorialComplete: KochavaTracker.KVAEventType
+ @objc public static let view: KochavaTracker.KVAEventType
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public let nameString: Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider, KochavaCore.KVANetworkingSetterProvider {
+ @objc override required dynamic public init()
+ @objc(initWithType:) public init(type: KochavaTracker.KVAEventType)
+ @available(*, deprecated, renamed: "init(type:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]")
+ @objc(eventWithType:) public static func event(withType type: KochavaTracker.KVAEventType) -> Self
+ @objc(initWithTypeNameString:) convenience public init(typeNameString: Swift.String)
+ @available(*, deprecated, renamed: "init(typeNameString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]")
+ @objc(eventWithTypeNameString:) public static func event(withTypeNameString typeNameString: Swift.String) -> Self
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ final public func execute()
+ @objc final public func send()
+ @objc(sendWithSenderArray:) final public func send(senderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "send(senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func send(senderArray:) instead.")
+ @nonobjc final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc final public func eventNameString() -> Swift.String
+ @objc(valueObjectForPropertyIdentifier:) final public func valueObject(forPropertyIdentifier propertyIdentifier: KochavaTracker.KVAEvent.PropertyIdentifier?) -> Swift.AnyObject?
+ public typealias PropertyIdentifier = Swift.String
+ @objc final public func subURLIdString() -> Swift.String?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var eventType: KochavaTracker.KVAEventType {
+ get
+ }
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var sendAsyncBool: Swift.Bool
+ @objc final public var sendLogMessagePrintBool: Swift.Bool
+ @objc final public var serviceLocallyBool: Swift.Bool {
+ @objc get
+ @objc set(serviceLocallyBool)
+ }
+ @objc final public var actionString: Swift.String?
+ @objc final public var adCampaignIdString: Swift.String?
+ @objc final public var adCampaignNameString: Swift.String?
+ @objc final public var adDeviceTypeString: Swift.String?
+ @objc final public var adGroupIdString: Swift.String?
+ @objc final public var adGroupNameString: Swift.String?
+ @objc final public var adMediationNameString: Swift.String?
+ @objc final public var adNetworkNameString: Swift.String?
+ @objc final public var adPlacementString: Swift.String?
+ @objc final public var adSizeString: Swift.String?
+ @objc final public var adTypeString: Swift.String?
+ @objc final public var appleWatchBool: Swift.Bool
+ @objc final public var appleWatchIdString: Swift.String?
+ @objc final public var appStoreReceiptBase64EncodedString: Swift.String?
+ @objc final public var backgroundBoolNumber: Foundation.NSNumber?
+ @objc final public var checkoutAsGuestString: Swift.String?
+ @objc final public var completedBoolNumber: Foundation.NSNumber?
+ @objc final public var consent: KochavaCore.KVAConsent? {
+ @objc get
+ @objc set(consent)
+ }
+ @objc final public var contentIdString: Swift.String?
+ @objc final public var contentTypeString: Swift.String?
+ @objc final public var currencyString: Swift.String?
+ @objc final public var customEventName: KochavaTracker.KVAEvent.CustomEventName?
+ @available(*, deprecated, renamed: "customEventName")
+ @objc final public var customEventNameString: KochavaTracker.KVAEvent.CustomEventName?
+ public typealias CustomEventName = Swift.String
+ @objc final public var date: Foundation.Date?
+ @objc final public var dateString: Swift.String?
+ @objc final public var descriptionString: Swift.String?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var durationTimeIntervalNumber: Foundation.NSNumber?
+ @objc final public var endDate: Foundation.Date?
+ @objc final public var endDateString: Swift.String?
+ @objc final public var infoDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(infoDictionary)
+ }
+ @objc final public var infoString: Swift.String?
+ @objc final public var itemAddedFromString: Swift.String?
+ @objc final public var levelString: Swift.String?
+ @objc final public var maxRatingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var nameString: Swift.String?
+ @objc final public var orderIdString: Swift.String?
+ @objc final public var originString: Swift.String?
+ @objc final public var payloadDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(payloadDictionary)
+ }
+ @objc final public var priceDecimalNumber: Foundation.NSDecimalNumber?
+ @objc final public var priceDoubleNumber: Foundation.NSNumber?
+ @objc final public var quantityDoubleNumber: Foundation.NSNumber?
+ @objc final public var ratingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var receiptIdString: Swift.String?
+ @objc final public var referralFromString: Swift.String?
+ @objc final public var registrationMethodString: Swift.String?
+ @objc final public var resultsString: Swift.String?
+ @objc final public var scoreString: Swift.String?
+ @objc final public var searchTermString: Swift.String?
+ @objc final public var sourceString: Swift.String?
+ @objc final public var spatialXDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialYDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialZDoubleNumber: Foundation.NSNumber?
+ @objc final public var startDate: Foundation.Date?
+ @objc final public var startDateString: Swift.String?
+ @objc final public var successString: Swift.String?
+ @objc final public var userIdString: Swift.String?
+ @objc final public var uriString: Swift.String?
+ @objc final public var userNameString: Swift.String?
+ @objc final public var validatedString: Swift.String?
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetwork) final public class KVAAdNetwork : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @objc get
+ @objc set(conversion)
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRegisterAppForAttribution: KochavaTracker.KVAAdNetwork.Closure_DidRegisterAppForAttribution? {
+ @objc get
+ @objc set(closure_didRegisterAppForAttribution)
+ }
+ @available(*, deprecated, renamed: "closure_didRegisterAppForAttribution")
+ @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetworkDidRegisterAppForAttributionBlock? {
+ @objc get
+ @objc set(didRegisterAppForAttributionBlock)
+ }
+ public typealias Closure_DidRegisterAppForAttribution = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppLimitAdTracking) final public class KVAAppLimitAdTracking : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc(boolean) final public var bool: Swift.Bool {
+ @objc get
+ @objc set(bool)
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppTrackingTransparency) final public class KVAAppTrackingTransparency : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var autoRequestTrackingAuthorizationBool: Swift.Bool {
+ @objc get
+ @objc set(autoRequestTrackingAuthorizationBool)
+ }
+ @objc final public var authorizationStatusWaitTimeInterval: Foundation.TimeInterval {
+ @objc get
+ @objc set(authorizationStatusWaitTimeInterval)
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+ @objc final public var authorizationStatusString: Swift.String? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAttribution) final public class KVAAttribution : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(closure_didComplete: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
+ @objc final public var result: KochavaTracker.KVAAttributionResult {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRetrieveResult: KochavaTracker.KVAAttribution.Closure_DidRetrieveResult? {
+ @objc get
+ @objc set(closure_didRetrieveResult)
+ }
+ public typealias Closure_DidRetrieveResult = (_ attribution: KochavaTracker.KVAAttribution, _ attributionResult: KochavaTracker.KVAAttributionResult) -> Swift.Void
+ @objc final public var retrieveResultBool: Swift.Bool {
+ @objc get
+ @objc set(retrieveResultBool)
+ }
+ @objc deinit
+}
+@_hasMissingDesignatedInitializers @objc(KVAAttributionResult) final public class KVAAttributionResult : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var attributedBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var firstInstallBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public let rawDictionary: [Swift.AnyHashable : Any]?
+ @objc final public var retrievedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVACustomIdentifiers) final public class KVACustomIdentifiers : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVACustomIdentifiers.Name, identifier: KochavaTracker.KVACustomIdentifiers.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(processWithURL:closure_didComplete:) public static func process(url: Foundation.URL?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:")
+ @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:processor:closure_didComplete:) public static func process(url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:")
+ @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:processor:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ public typealias Closure_Process_DidComplete = (_ deeplink: KochavaTracker.KVADeeplink) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var urlString: Swift.String?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var rawDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(rawDictionary)
+ }
+ @objc deinit
+}
+@objc public protocol KVADeeplinksProcessor {
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+}
+@objc public protocol KVADeeplinksProcessorProvider {
+ @objc var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplinks) final public class KVADeeplinks : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessor, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc(augmentDeferredPrefetchWithName:identifier:) final public func augmentDeferredPrefetch(name: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchName, identifier: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchIdentifier)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias AugmentDeferredPrefetchName = Swift.String
+ public typealias AugmentDeferredPrefetchIdentifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeviceId) final public class KVADeviceId : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var string: Swift.String? {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAEvents) final public class KVAEvents : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVAEventSender, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc final public func send(event: KochavaTracker.KVAEvent)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversion) final public class KVAAdNetworkConversion : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didUpdatePostbackValue: KochavaTracker.KVAAdNetworkConversion.Closure_DidUpdatePostbackValue? {
+ @objc get
+ @objc set(closure_didUpdatePostbackValue)
+ }
+ @available(*, deprecated, renamed: "closure_didUpdatePostbackValue")
+ @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversionDidUpdateValueBlock? {
+ @objc get
+ @objc set(didUpdateValueBlock)
+ }
+ public typealias Closure_DidUpdatePostbackValue = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
+ @objc final public var result: KochavaTracker.KVAAdNetworkConversionResult {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVAIdentityLink.Name, identifier: KochavaTracker.KVAIdentityLink.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAInstall) final public class KVAInstall : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var didStartFirstDate: Foundation.Date? {
+ @objc get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversionResult) final public class KVAAdNetworkConversionResult : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc final public func valueInt() -> Swift.Int
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @available(iOS 16.0, iOSApplicationExtension 16.0, *)
+ @objc final public var coarseValue: StoreKit.SKAdNetwork.CoarseConversionValue? {
+ @objc get
+ }
+ @objc final public var error: Swift.Error? {
+ @objc get
+ }
+ @objc final public var modelString: Swift.String? {
+ @objc get
+ }
+ final public var translatedValueInt: KochavaTracker.KVAAdNetworkConversionResult.TranslatedValueInt? {
+ get
+ }
+ @objc final public var translatedValueIntNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ public typealias TranslatedValueInt = Swift.Int
+ @objc final public var rawValueNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAPushNotifications) final public class KVAPushNotifications : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAMutable, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaTracker.KVAPushNotificationsTokenRegistrar, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerGeneral) final public class KVATrackerGeneral : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public let instanceCreatedDate: Foundation.Date
+ public static let startSequenceDidCompleteNotificationName: Foundation.Notification.Name
+}
+@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(registerWithData:) public static func register(data: Foundation.Data)
+ @available(*, deprecated, renamed: "register(data:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:) instead.")
+ public static func register(withData data: Foundation.Data)
+ @objc(registerWithData:registrarArray:) public static func register(data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(data:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:registrarArray:) instead.")
+ public static func register(withData data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @objc(registerWithDataHexString:) public static func register(dataHexString: Swift.String)
+ @available(*, deprecated, renamed: "register(dataHexString:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String)
+ @objc(registerWithDataHexString:registrarArray:) public static func register(dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(dataHexString:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:registrarArray:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public let data: Foundation.Data?
+ @objc final public let providedDate: Foundation.Date?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc deinit
+}
+@objc public protocol KVAPushNotificationsTokenRegistrar {
+ @objc(registerToken:) func register(token: KochavaTracker.KVAPushNotificationsToken)
+}
+@objc public protocol KVAPushNotificationsTokenRegistrarProvider {
+ @objc var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaCore.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider, KochavaCore.KVAStartable, KochavaCore.KVAStartableWithOptions, KochavaCore.KVAStoppable, KochavaCore.KVAStoppableWithOptions {
+ @objc public static var shared: KochavaTracker.KVATracker {
+ @objc get
+ }
+ @objc public static var shared_optional: KochavaTracker.KVATracker? {
+ @objc get
+ }
+ @objc public static var sharedInstance: Swift.AnyObject {
+ @objc get
+ }
+ @objc override convenience dynamic public init()
+ @objc(initWithStorageIdentifier:) required public init(storageIdentifier: KochavaCore.KVANetworking.StorageIdentifier?)
+ @available(*, deprecated, renamed: "init()", message: "Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.")
+ @objc(tracker) public static func tracker() -> Self
+ @available(*, deprecated, renamed: "init(storageIdentifier:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.")
+ @objc(trackerWithStorageIdString:) public static func tracker(withStorageIdString storageIdString: Swift.String?) -> Self
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc(configureWith:context:) final public func configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(startWithAppGUIDString:) final public func start(withAppGUIDString appGUIDString: Swift.String)
+ @objc(startWithPartnerNameString:) final public func start(withPartnerNameString partnerNameString: Swift.String)
+ @objc final public func start()
+ @objc final public func start(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func stop()
+ @objc final public func stop(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func invalidate()
+ @objc final public func invalidate(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public var adNetwork: KochavaTracker.KVAAdNetwork {
+ @objc get
+ }
+ @objc final public var appLimitAdTracking: KochavaTracker.KVAAppLimitAdTracking {
+ @objc get
+ }
+ @objc final public var appTrackingTransparency: KochavaTracker.KVAAppTrackingTransparency {
+ @objc get
+ }
+ @objc final public var attribution: KochavaTracker.KVAAttribution {
+ @objc get
+ }
+ @objc final public var config: KochavaTracker.KVATrackerConfig {
+ @objc get
+ }
+ @objc final public var customIdentifiers: KochavaTracker.KVACustomIdentifiers {
+ @objc get
+ }
+ @objc final public var deeplinks: KochavaTracker.KVADeeplinks {
+ @objc get
+ }
+ @objc final public var deviceId: KochavaTracker.KVADeviceId {
+ @objc get
+ }
+ final public var events: KochavaTracker.KVAEvents {
+ get
+ }
+ @objc final public var general: KochavaTracker.KVATrackerGeneral {
+ @objc get
+ }
+ @objc final public var identityLink: KochavaTracker.KVAIdentityLink {
+ @objc get
+ }
+ @objc final public var install: KochavaTracker.KVAInstall {
+ @objc get
+ }
+ @objc final public var networking: KochavaCore.KVANetworking {
+ @objc get
+ }
+ @objc final public var pushNotifications: KochavaTracker.KVAPushNotifications {
+ @objc get
+ }
+ @available(*, deprecated, renamed: "appLimitAdTracking.bool", message: "Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.")
+ @objc final public var appLimitAdTrackingBool: Swift.Bool {
+ @objc get
+ @objc set(appLimitAdTrackingBool)
+ }
+ @available(*, deprecated, renamed: "deviceId.string", message: "Convenience wrapper function deprecated. Use var deviceId.string instead.")
+ @objc final public var deviceIdString: Swift.String? {
+ @objc get
+ }
+ @objc final public var privacy: KochavaCore.KVAPrivacy {
+ @objc get
+ }
+ @objc final public var sleepBool: Swift.Bool {
+ @objc get
+ @objc set(sleepBool)
+ }
+ @objc final public var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? {
+ @objc get
+ }
+ @objc final public var eventSender: KochavaTracker.KVAEventSender {
+ @objc get
+ }
+ @objc final public var privacyProfileRegistrar: KochavaCore.KVAPrivacyProfileRegistrar {
+ @objc get
+ }
+ @objc final public var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc public static var sharedStorageIdentifier: KochavaCore.KVANetworking.StorageIdentifier? {
+ @objc get
+ @objc set(sharedStorageIdentifier)
+ }
+ @available(*, deprecated, renamed: "sharedStorageIdentifier", message: "Use sharedStorageIdentifier instead.")
+ @objc public static var sharedStorageIdString: Swift.String? {
+ @objc get
+ @objc set(sharedStorageIdString)
+ }
+ @objc final public var startedBool: Swift.Bool {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerConfig) final public class KVATrackerConfig : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveWithClosure_didComplete:) final public func retrieve(closure_didComplete: @escaping KochavaTracker.KVATrackerConfig.Closure_Retrieve_DidComplete)
+ public typealias Closure_Retrieve_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didComplete: KochavaTracker.KVATrackerConfig.Closure_DidComplete? {
+ @objc get
+ @objc set(closure_didComplete)
+ }
+ public typealias Closure_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ @objc final public var consentGDPRAppliesBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var collectedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+extension Foundation.Date {
+ public func kva_sendDateString(fromRequestBodyDictionary requestBodyDictionary: [Swift.AnyHashable : Any]?) -> Swift.String
+}
+@available(iOS 16.0, *)
+extension StoreKit.SKAdNetwork.CoarseConversionValue {
+ @available(iOS 16.0, *)
+ public func kva_identifier() -> Swift.String
+ public static func kva_from(_ object: Any?) -> StoreKit.SKAdNetwork.CoarseConversionValue?
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appStoreReceiptDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var architectureStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryStateStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var bootDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var carrierNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var cellularTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func deviceLimitAdTrackingBool() -> Swift.Bool
+ final public var deviceModelStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceOrientationStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceSystemNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var iabUSPrivacyStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idctDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func idfaString() -> Swift.String?
+ final public var idfaStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idfvStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var ipAddressStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var localTimezoneNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var minimumOSVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public var networkConnectionTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osGenuineBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var platformNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var userAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var volumeNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var vpnBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var webViewUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent {
+ @objc(sendCustomWithEventName:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "sendCustom(eventName:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.")
+ @objc(sendCustomWithNameString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @objc(sendCustomWithEventName:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.")
+ @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoDictionary:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @objc(sendCustomWithEventName:infoDictionary:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoString:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.")
+ @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @objc(sendCustomWithEventName:infoString:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(initCustomWithEventName:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "init(customWithEventName:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]")
+ @objc(customEventWithNameString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName) -> Self
+ @objc(initCustomWithEventName:infoDictionary:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoDictionary:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]")
+ @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
+ @objc(initCustomWithEventName:infoString:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]")
+ @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?) -> Self
+}
+@_inheritsConvenienceInitializers @objc(KVATrackerProduct) final public class KVATrackerProduct : ObjectiveC.NSObject, KochavaCore.KVASharedPropertyProvider {
+ @objc public static let shared: KochavaCore.KVAProduct
+ public static var sharedInstance: Swift.AnyObject {
+ get
+ }
+ @objc override dynamic public init()
+ @objc deinit
+}
+@objc public protocol KVAEventSender {
+ @objc(sendEvent:) func send(event: KochavaTracker.KVAEvent)
+}
+@objc public protocol KVAEventSenderProvider {
+ @objc var eventSender: KochavaTracker.KVAEventSender { get }
+}
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftdoc b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftdoc
index e800f19..5e8be90 100644
Binary files a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftdoc and b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftdoc differ
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftinterface b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftinterface
index 4832c2e..74f5099 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftinterface
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftinterface
@@ -1,6 +1,7 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
+// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
// swift-module-flags: -target arm64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name KochavaTracker
+// swift-module-flags-ignorable: -enable-bare-slash-regex
import AVFoundation
import AdServices
import AdSupport
@@ -17,7 +18,7 @@ import UIKit
import UserNotifications
import WebKit
import _Concurrency
-import iAd
+import _StringProcessing
@_hasMissingDesignatedInitializers @objc(KVAEventType) final public class KVAEventType : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
@objc public static let achievement: KochavaTracker.KVAEventType
@objc public static let adClick: KochavaTracker.KVAEventType
@@ -47,21 +48,27 @@ import iAd
@objc final public let nameString: Swift.String
@objc deinit
}
-@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider {
+@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider, KochavaCore.KVANetworkingSetterProvider {
@objc override required dynamic public init()
- public init(type: KochavaTracker.KVAEventType)
+ @objc(initWithType:) public init(type: KochavaTracker.KVAEventType)
+ @available(*, deprecated, renamed: "init(type:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]")
@objc(eventWithType:) public static func event(withType type: KochavaTracker.KVAEventType) -> Self
- convenience public init(typeNameString: Swift.String)
+ @objc(initWithTypeNameString:) convenience public init(typeNameString: Swift.String)
+ @available(*, deprecated, renamed: "init(typeNameString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]")
@objc(eventWithTypeNameString:) public static func event(withTypeNameString typeNameString: Swift.String) -> Self
public static func kva_from(_ object: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
@objc override final public var description: Swift.String {
@objc get
}
+ final public func execute()
@objc final public func send()
- @objc(sendWithSenderArray:) final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendWithSenderArray:) final public func send(senderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "send(senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func send(senderArray:) instead.")
+ @nonobjc final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
@objc final public func eventNameString() -> Swift.String
- @objc(valueObjectForPropertyIdentifierString:) final public func valueObject(forPropertyIdentifierString propertyIdentifierString: Swift.String?) -> Swift.AnyObject?
+ @objc(valueObjectForPropertyIdentifier:) final public func valueObject(forPropertyIdentifier propertyIdentifier: KochavaTracker.KVAEvent.PropertyIdentifier?) -> Swift.AnyObject?
+ public typealias PropertyIdentifier = Swift.String
@objc final public func subURLIdString() -> Swift.String?
final public var mutator: KochavaCore.KVAMutator {
get
@@ -69,8 +76,9 @@ import iAd
@objc final public var eventType: KochavaTracker.KVAEventType {
get
}
- @objc final public var sendDispatchBool: Swift.Bool
- @objc final public var sendPrintLogMessageBool: Swift.Bool
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var sendAsyncBool: Swift.Bool
+ @objc final public var sendLogMessagePrintBool: Swift.Bool
@objc final public var serviceLocallyBool: Swift.Bool {
@objc get
@objc set(serviceLocallyBool)
@@ -99,7 +107,10 @@ import iAd
@objc final public var contentIdString: Swift.String?
@objc final public var contentTypeString: Swift.String?
@objc final public var currencyString: Swift.String?
- @objc final public var customEventNameString: Swift.String?
+ @objc final public var customEventName: KochavaTracker.KVAEvent.CustomEventName?
+ @available(*, deprecated, renamed: "customEventName")
+ @objc final public var customEventNameString: KochavaTracker.KVAEvent.CustomEventName?
+ public typealias CustomEventName = Swift.String
@objc final public var date: Foundation.Date?
@objc final public var dateString: Swift.String?
@objc final public var descriptionString: Swift.String?
@@ -155,18 +166,23 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
final public func invalidate()
+ @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @objc get
+ @objc set(conversion)
+ }
final public var mutator: KochavaCore.KVAMutator {
get
}
- @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetwork.KVAAdNetworkDidRegisterAppForAttributionBlock? {
+ @objc final public var closure_didRegisterAppForAttribution: KochavaTracker.KVAAdNetwork.Closure_DidRegisterAppForAttribution? {
@objc get
- @objc set(didRegisterAppForAttributionBlock)
+ @objc set(closure_didRegisterAppForAttribution)
}
- public typealias KVAAdNetworkDidRegisterAppForAttributionBlock = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
- @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @available(*, deprecated, renamed: "closure_didRegisterAppForAttribution")
+ @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetworkDidRegisterAppForAttributionBlock? {
@objc get
- @objc set(conversion)
+ @objc set(didRegisterAppForAttributionBlock)
}
+ public typealias Closure_DidRegisterAppForAttribution = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
@objc deinit
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppLimitAdTracking) final public class KVAAppLimitAdTracking : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
@@ -219,8 +235,11 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
- @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(withCompletionHandler completionHandler: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
final public func invalidate()
+ @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(closure_didComplete: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
+ @objc final public var result: KochavaTracker.KVAAttributionResult {
+ @objc get
+ }
final public var mutator: KochavaCore.KVAMutator {
get
}
@@ -233,9 +252,6 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
@objc get
@objc set(retrieveResultBool)
}
- @objc final public var result: KochavaTracker.KVAAttributionResult {
- @objc get
- }
@objc deinit
}
@_hasMissingDesignatedInitializers @objc(KVAAttributionResult) final public class KVAAttributionResult : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
@@ -262,25 +278,40 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVACustomIdentifiers.Name, identifier: KochavaTracker.KVACustomIdentifiers.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.")
@objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
final public func invalidate()
final public var mutator: KochavaCore.KVAMutator {
get
}
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
@objc deinit
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
- @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
- @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
- @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
- @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(processWithURL:closure_didComplete:) public static func process(url: Foundation.URL?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:")
+ @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:processor:closure_didComplete:) public static func process(url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:")
+ @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:processor:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
public static func kva_from(_ object: Any?) -> Self?
@objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
@objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ public typealias Closure_Process_DidComplete = (_ deeplink: KochavaTracker.KVADeeplink) -> Swift.Void
final public var mutator: KochavaCore.KVAMutator {
get
}
@objc final public var urlString: Swift.String?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
@objc final public var destinationString: Swift.String?
@objc final public var rawDictionary: [Swift.AnyHashable : Any]? {
@objc get
@@ -289,7 +320,7 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
@objc deinit
}
@objc public protocol KVADeeplinksProcessor {
- @objc(processDeeplink:timeoutTimeInterval:completionHandler:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
}
@objc public protocol KVADeeplinksProcessorProvider {
@objc var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? { get }
@@ -301,11 +332,14 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- @objc(processDeeplink:timeoutTimeInterval:completionHandler:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
final public func invalidate()
+ @objc(augmentDeferredPrefetchWithName:identifier:) final public func augmentDeferredPrefetch(name: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchName, identifier: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchIdentifier)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
final public var mutator: KochavaCore.KVAMutator {
get
}
+ public typealias AugmentDeferredPrefetchName = Swift.String
+ public typealias AugmentDeferredPrefetchIdentifier = Swift.String
@objc deinit
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeviceId) final public class KVADeviceId : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
@@ -329,8 +363,8 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- @objc final public func send(event: KochavaTracker.KVAEvent)
final public func invalidate()
+ @objc final public func send(event: KochavaTracker.KVAEvent)
final public var mutator: KochavaCore.KVAMutator {
get
}
@@ -346,28 +380,36 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public var mutator: KochavaCore.KVAMutator {
get
}
- @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversion.KVAAdNetworkConversionDidUpdateValueBlock? {
+ @objc final public var closure_didUpdatePostbackValue: KochavaTracker.KVAAdNetworkConversion.Closure_DidUpdatePostbackValue? {
+ @objc get
+ @objc set(closure_didUpdatePostbackValue)
+ }
+ @available(*, deprecated, renamed: "closure_didUpdatePostbackValue")
+ @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversionDidUpdateValueBlock? {
@objc get
@objc set(didUpdateValueBlock)
}
- public typealias KVAAdNetworkConversionDidUpdateValueBlock = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
+ public typealias Closure_DidUpdatePostbackValue = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
@objc final public var result: KochavaTracker.KVAAdNetworkConversionResult {
@objc get
}
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
- @objc deinit
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
public static func kva_from(_ object: Any?) -> Self?
public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- final public func start()
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVAIdentityLink.Name, identifier: KochavaTracker.KVAIdentityLink.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.")
@objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
final public func invalidate()
final public var mutator: KochavaCore.KVAMutator {
get
}
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAInstall) final public class KVAInstall : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
public static func kva_from(_ object: Any?) -> Self?
@@ -387,41 +429,6 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
}
extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAPrivacy) final public class KVAPrivacy : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaTracker.KVAPrivacyProfileRegistrar {
- public static func kva_from(_ object: Any?) -> Self?
- public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
- final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
- final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
- final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- @objc(registerProfile:) final public func register(profile: KochavaTracker.KVAPrivacyProfile)
- @objc(setEnabledBoolForProfileNameString:enabledBool:) final public func setEnabledBool(forProfileNameString profileNameString: Swift.String, enabledBool: Swift.Bool)
- final public func invalidate()
- final public var mutator: KochavaCore.KVAMutator {
- get
- }
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc(KVAPrivacyProfile) final public class KVAPrivacyProfile : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
- @objc(registerWithNameString:payloadKeyStringArray:) public static func register(withNameString nameString: Swift.String, payloadKeyStringArray: [Swift.String]?)
- @objc(registerWithNameString:payloadKeyStringArray:registrarArray:) public static func register(withNameString nameString: Swift.String, payloadKeyStringArray: [Swift.String]?, registrarArray: [KochavaTracker.KVAPrivacyProfileRegistrarProvider]?)
- @objc(registerWithNameString:payloadKeyStringArray:payloadIdStringArray:registrarArray:) public static func register(withNameString nameString: Swift.String, payloadKeyStringArray: [Swift.String]?, payloadIdStringArray: [Swift.String]?, registrarArray: [KochavaTracker.KVAPrivacyProfileRegistrarProvider]?)
- public static func kva_from(_ object: Any?) -> Self?
- final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
- @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
- final public var mutator: KochavaCore.KVAMutator {
- get
- }
- @objc final public let nameString: Swift.String
- @objc final public let payloadKeyStringArray: [Swift.String]?
- @objc final public let payloadIdStringArray: [Swift.String]?
- @objc deinit
-}
-@objc public protocol KVAPrivacyProfileRegistrar {
- @objc(registerProfile:) func register(profile: KochavaTracker.KVAPrivacyProfile)
-}
-@objc public protocol KVAPrivacyProfileRegistrarProvider {
- @objc var privacyProfileRegistrar: KochavaTracker.KVAPrivacyProfileRegistrar { get }
-}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversionResult) final public class KVAAdNetworkConversionResult : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAMutable {
@objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
@objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
@@ -431,15 +438,23 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public var mutator: KochavaCore.KVAMutator {
get
}
+ @available(iOS 16.0, iOSApplicationExtension 16.0, *)
+ @objc final public var coarseValue: StoreKit.SKAdNetwork.CoarseConversionValue? {
+ @objc get
+ }
+ @objc final public var error: Swift.Error? {
+ @objc get
+ }
@objc final public var modelString: Swift.String? {
@objc get
}
- final public var translatedValueInt: Swift.Int? {
+ final public var translatedValueInt: KochavaTracker.KVAAdNetworkConversionResult.TranslatedValueInt? {
get
}
@objc final public var translatedValueIntNumber: Foundation.NSNumber? {
@objc get
}
+ public typealias TranslatedValueInt = Swift.Int
@objc final public var rawValueNumber: Foundation.NSNumber? {
@objc get
}
@@ -453,8 +468,8 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
- @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
final public func invalidate()
+ @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
final public var mutator: KochavaCore.KVAMutator {
get
}
@@ -478,19 +493,29 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public let instanceCreatedDate: Foundation.Date
public static let startSequenceDidCompleteNotificationName: Foundation.Notification.Name
}
-@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
- @objc(registerWithData:) public static func register(withData deviceTokenData: Foundation.Data)
- @objc(registerWithDataHexString:) public static func register(withDataHexString deviceTokenDataHexString: Swift.String)
- @objc(registerWithData:registrarArray:) public static func register(withData deviceTokenData: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
- @objc(registerWithDataHexString:registrarArray:) public static func register(withDataHexString deviceTokenDataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(registerWithData:) public static func register(data: Foundation.Data)
+ @available(*, deprecated, renamed: "register(data:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:) instead.")
+ public static func register(withData data: Foundation.Data)
+ @objc(registerWithData:registrarArray:) public static func register(data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(data:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:registrarArray:) instead.")
+ public static func register(withData data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @objc(registerWithDataHexString:) public static func register(dataHexString: Swift.String)
+ @available(*, deprecated, renamed: "register(dataHexString:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String)
+ @objc(registerWithDataHexString:registrarArray:) public static func register(dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(dataHexString:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:registrarArray:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
public static func kva_from(_ object: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
@objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
final public var mutator: KochavaCore.KVAMutator {
get
}
@objc final public let data: Foundation.Data?
@objc final public let providedDate: Foundation.Date?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
@objc deinit
}
@objc public protocol KVAPushNotificationsTokenRegistrar {
@@ -499,7 +524,7 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc public protocol KVAPushNotificationsTokenRegistrarProvider {
@objc var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar { get }
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaTracker.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider {
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaCore.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider, KochavaCore.KVAStartable, KochavaCore.KVAStartableWithOptions, KochavaCore.KVAStoppable, KochavaCore.KVAStoppableWithOptions {
@objc public static var shared: KochavaTracker.KVATracker {
@objc get
}
@@ -510,8 +535,10 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc get
}
@objc override convenience dynamic public init()
- @objc(initWithStorageIdString:) required public init(storageIdString: Swift.String?)
+ @objc(initWithStorageIdentifier:) required public init(storageIdentifier: KochavaCore.KVANetworking.StorageIdentifier?)
+ @available(*, deprecated, renamed: "init()", message: "Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.")
@objc(tracker) public static func tracker() -> Self
+ @available(*, deprecated, renamed: "init(storageIdentifier:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.")
@objc(trackerWithStorageIdString:) public static func tracker(withStorageIdString storageIdString: Swift.String?) -> Self
@objc deinit
public static func kva_from(_ object: Any?) -> Self?
@@ -522,13 +549,15 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc(startWithAppGUIDString:) final public func start(withAppGUIDString appGUIDString: Swift.String)
@objc(startWithPartnerNameString:) final public func start(withPartnerNameString partnerNameString: Swift.String)
@objc final public func start()
+ @objc final public func start(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func stop()
+ @objc final public func stop(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func invalidate()
+ @objc final public func invalidate(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
@objc override final public var description: Swift.String {
@objc get
}
- @objc(executeAdvancedInstructionWithIdentifierString:valueObject:) final public func executeAdvancedInstruction(identifierString: Swift.String, valueObject: Any?)
- @objc final public func invalidate()
- @objc final public func invalidate(asyncBool: Swift.Bool, printLogMessageBool: Swift.Bool)
- @objc final public var adNetwork: KochavaTracker.KVAAdNetwork? {
+ @objc final public var adNetwork: KochavaTracker.KVAAdNetwork {
@objc get
}
@objc final public var appLimitAdTracking: KochavaTracker.KVAAppLimitAdTracking {
@@ -543,9 +572,6 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var config: KochavaTracker.KVATrackerConfig {
@objc get
}
- @objc final public var consent: KochavaCore.KVAConsent {
- @objc get
- }
@objc final public var customIdentifiers: KochavaTracker.KVACustomIdentifiers {
@objc get
}
@@ -570,19 +596,21 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var networking: KochavaCore.KVANetworking {
@objc get
}
- @objc final public var privacy: KochavaTracker.KVAPrivacy {
- @objc get
- }
@objc final public var pushNotifications: KochavaTracker.KVAPushNotifications {
@objc get
}
+ @available(*, deprecated, renamed: "appLimitAdTracking.bool", message: "Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.")
@objc final public var appLimitAdTrackingBool: Swift.Bool {
@objc get
@objc set(appLimitAdTrackingBool)
}
+ @available(*, deprecated, renamed: "deviceId.string", message: "Convenience wrapper function deprecated. Use var deviceId.string instead.")
@objc final public var deviceIdString: Swift.String? {
@objc get
}
+ @objc final public var privacy: KochavaCore.KVAPrivacy {
+ @objc get
+ }
@objc final public var sleepBool: Swift.Bool {
@objc get
@objc set(sleepBool)
@@ -593,7 +621,7 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var eventSender: KochavaTracker.KVAEventSender {
@objc get
}
- @objc final public var privacyProfileRegistrar: KochavaTracker.KVAPrivacyProfileRegistrar {
+ @objc final public var privacyProfileRegistrar: KochavaCore.KVAPrivacyProfileRegistrar {
@objc get
}
@objc final public var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar {
@@ -602,6 +630,11 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public var mutator: KochavaCore.KVAMutator {
get
}
+ @objc public static var sharedStorageIdentifier: KochavaCore.KVANetworking.StorageIdentifier? {
+ @objc get
+ @objc set(sharedStorageIdentifier)
+ }
+ @available(*, deprecated, renamed: "sharedStorageIdentifier", message: "Use sharedStorageIdentifier instead.")
@objc public static var sharedStorageIdString: Swift.String? {
@objc get
@objc set(sharedStorageIdString)
@@ -609,7 +642,6 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var startedBool: Swift.Bool {
@objc get
}
- public static let willDeallocNotificationName: Foundation.Notification.Name
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerConfig) final public class KVATrackerConfig : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
public static func kva_from(_ object: Any?) -> Self?
@@ -619,151 +651,189 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
final public func invalidate()
+ @objc(retrieveWithClosure_didComplete:) final public func retrieve(closure_didComplete: @escaping KochavaTracker.KVATrackerConfig.Closure_Retrieve_DidComplete)
+ public typealias Closure_Retrieve_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
final public var mutator: KochavaCore.KVAMutator {
get
}
+ @objc final public var closure_didComplete: KochavaTracker.KVATrackerConfig.Closure_DidComplete? {
+ @objc get
+ @objc set(closure_didComplete)
+ }
+ public typealias Closure_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ @objc final public var consentGDPRAppliesBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var collectedBool: Swift.Bool {
+ @objc get
+ }
@objc deinit
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+extension Foundation.Date {
+ public func kva_sendDateString(fromRequestBodyDictionary requestBodyDictionary: [Swift.AnyHashable : Any]?) -> Swift.String
+}
+@available(iOS 16.0, *)
+extension StoreKit.SKAdNetwork.CoarseConversionValue {
+ @available(iOS 16.0, *)
+ public func kva_identifier() -> Swift.String
+ public static func kva_from(_ object: Any?) -> StoreKit.SKAdNetwork.CoarseConversionValue?
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
public static func kva_from(_ object: Any?) -> Self?
public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public func start()
+ final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appMainBundleVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var appMainBundleVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appStoreReceiptDataAdapter: KochavaCore.KVAStringAdapter {
+ final public var appStoreReceiptDataAdapter: KochavaCore.KVAAdapter {
get
}
- final public var architectureStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var architectureStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAIntAdapter {
+ final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAAdapter {
get
}
- final public var batteryStateStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var batteryStateStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var bootDateAdapter: KochavaCore.KVADateAdapter {
+ final public var bootDateAdapter: KochavaCore.KVAAdapter {
get
}
- final public var carrierNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var carrierNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var cellularTypeStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var cellularTypeStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var currentDateAdapter: KochavaCore.KVADateAdapter {
+ final public var currentDateAdapter: KochavaCore.KVAAdapter {
get
}
- final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVABoolAdapter {
+ final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVAAdapter {
get
}
final public func deviceLimitAdTrackingBool() -> Swift.Bool
- final public var deviceModelStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var deviceModelStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var deviceOrientationStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var deviceOrientationStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var deviceSystemNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var deviceSystemNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var iabUSPrivacyStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var iabUSPrivacyStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var idctDataAdapter: KochavaCore.KVADataAdapter {
+ final public var idctDataAdapter: KochavaCore.KVAAdapter {
get
}
final public func idfaString() -> Swift.String?
- final public var idfaStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var idfaStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var idfvStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var idfvStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var ipAddressStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var ipAddressStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var localTimezoneNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var localTimezoneNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVANumberAdapter {
+ final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVAAdapter {
get
}
- final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAIntAdapter {
+ final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAAdapter {
get
}
- final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAIntAdapter {
+ final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAAdapter {
get
}
- final public var minimumOSVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var minimumOSVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
final public var mutator: KochavaCore.KVAMutator {
get
}
- final public var networkConnectionTypeStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var networkConnectionTypeStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var osGenuineBoolAdapter: KochavaCore.KVABoolAdapter {
+ final public var osGenuineBoolAdapter: KochavaCore.KVAAdapter {
get
}
- final public var osVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var osVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var platformNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var platformNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var userAgentStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var userAgentStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var volumeNumberAdapter: KochavaCore.KVANumberAdapter {
+ final public var volumeNumberAdapter: KochavaCore.KVAAdapter {
get
}
- final public var vpnBoolAdapter: KochavaCore.KVABoolAdapter {
+ final public var vpnBoolAdapter: KochavaCore.KVAAdapter {
get
}
- final public var webViewUserAgentStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var webViewUserAgentStringAdapter: KochavaCore.KVAAdapter {
get
}
@objc deinit
}
extension KochavaTracker.KVAEvent {
- @objc(sendCustomWithNameString:) public static func sendCustom(withNameString customEventNameString: Swift.String)
- @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString customEventNameString: Swift.String, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
- @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?)
- @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
- @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoString: Swift.String?)
- @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
- @objc(initCustomWithNameString:) convenience dynamic public init(customWithNameString customEventNameString: Swift.String)
- @objc(customEventWithNameString:) public static func customEvent(withNameString customEventNameString: Swift.String) -> Self
- @objc(initCustomWithNameString:infoDictionary:) convenience dynamic public init(customWithNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?)
- @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
- @objc(initCustomWithNameString:infoString:) convenience dynamic public init(customWithNameString customEventNameString: Swift.String, infoString: Swift.String?)
- @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString customEventNameString: Swift.String, infoString: Swift.String?) -> Self
+ @objc(sendCustomWithEventName:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "sendCustom(eventName:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.")
+ @objc(sendCustomWithNameString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @objc(sendCustomWithEventName:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.")
+ @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoDictionary:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @objc(sendCustomWithEventName:infoDictionary:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoString:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.")
+ @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @objc(sendCustomWithEventName:infoString:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(initCustomWithEventName:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "init(customWithEventName:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]")
+ @objc(customEventWithNameString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName) -> Self
+ @objc(initCustomWithEventName:infoDictionary:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoDictionary:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]")
+ @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
+ @objc(initCustomWithEventName:infoString:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]")
+ @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?) -> Self
}
@_inheritsConvenienceInitializers @objc(KVATrackerProduct) final public class KVATrackerProduct : ObjectiveC.NSObject, KochavaCore.KVASharedPropertyProvider {
@objc public static let shared: KochavaCore.KVAProduct
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.abi.json b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.abi.json
new file mode 100644
index 0000000..2b116a5
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.abi.json
@@ -0,0 +1,49009 @@
+{
+ "ABIRoot": {
+ "kind": "Root",
+ "name": "TopLevel",
+ "printedName": "TopLevel",
+ "children": [
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventType",
+ "printedName": "KVAEventType",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "achievement",
+ "printedName": "achievement",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)achievement",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11achievementACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)achievement",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11achievementACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adClick",
+ "printedName": "adClick",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)adClick",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC7adClickACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)adClick",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC7adClickACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "addToCart",
+ "printedName": "addToCart",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)addToCart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9addToCartACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)addToCart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9addToCartACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "addToWishList",
+ "printedName": "addToWishList",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)addToWishList",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13addToWishListACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)addToWishList",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13addToWishListACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adView",
+ "printedName": "adView",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)adView",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6adViewACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)adView",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6adViewACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "checkoutStart",
+ "printedName": "checkoutStart",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)checkoutStart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13checkoutStartACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)checkoutStart",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13checkoutStartACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consentGranted",
+ "printedName": "consentGranted",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)consentGranted",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC14consentGrantedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)consentGranted",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC14consentGrantedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "custom",
+ "printedName": "custom",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)custom",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6customACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)custom",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6customACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplink",
+ "printedName": "deeplink",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)deeplink",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8deeplinkACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)deeplink",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8deeplinkACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "levelComplete",
+ "printedName": "levelComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)levelComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13levelCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)levelComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC13levelCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "purchase",
+ "printedName": "purchase",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)purchase",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8purchaseACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)purchase",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8purchaseACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushOpened",
+ "printedName": "pushOpened",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)pushOpened",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10pushOpenedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)pushOpened",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10pushOpenedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushReceived",
+ "printedName": "pushReceived",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)pushReceived",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC12pushReceivedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)pushReceived",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC12pushReceivedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rating",
+ "printedName": "rating",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)rating",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6ratingACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)rating",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6ratingACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "registrationComplete",
+ "printedName": "registrationComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)registrationComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC20registrationCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)registrationComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC20registrationCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "search",
+ "printedName": "search",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)search",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6searchACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)search",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6searchACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startTrial",
+ "printedName": "startTrial",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)startTrial",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10startTrialACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)startTrial",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10startTrialACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "subscribe",
+ "printedName": "subscribe",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)subscribe",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9subscribeACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)subscribe",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC9subscribeACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "tutorialComplete",
+ "printedName": "tutorialComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)tutorialComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC16tutorialCompleteACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)tutorialComplete",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC16tutorialCompleteACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "view",
+ "printedName": "view",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cpy)view",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC4viewACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(cm)view",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC4viewACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAEventTypeC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAEventTypeC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(py)description",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)description",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nameString",
+ "printedName": "nameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(py)nameString",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10nameStringSSvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)nameString",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC10nameStringSSvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType(im)init",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType",
+ "mangledName": "$s14KochavaTracker12KVAEventTypeC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEventType",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEvent",
+ "printedName": "KVAEvent",
+ "children": [
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)init",
+ "mangledName": "$s14KochavaTracker8KVAEventCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Required",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(type:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)initWithType:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4typeAcA0C4TypeC_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithType:",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "event",
+ "printedName": "event(withType:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(cm)eventWithType:",
+ "mangledName": "$s14KochavaTracker8KVAEventC5event8withTypeACXDAA0cF0C_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "eventWithType:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(typeNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)initWithTypeNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14typeNameStringACSS_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithTypeNameString:",
+ "declAttributes": [
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "event",
+ "printedName": "event(withTypeNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(cm)eventWithTypeNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC5event18withTypeNameStringACXDSS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "eventWithTypeNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker8KVAEventC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker8KVAEventC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)description",
+ "mangledName": "$s14KochavaTracker8KVAEventC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)description",
+ "mangledName": "$s14KochavaTracker8KVAEventC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC7executeyyF",
+ "mangledName": "$s14KochavaTracker8KVAEventC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)send",
+ "mangledName": "$s14KochavaTracker8KVAEventC4sendyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendWithSenderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4send11senderArrayySayAA0C14SenderProvider_pGSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "sendWithSenderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(withSenderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker8KVAEventC4send15withSenderArrayySayAA0cF8Provider_pGSg_tF",
+ "mangledName": "$s14KochavaTracker8KVAEventC4send15withSenderArrayySayAA0cF8Provider_pGSg_tF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "NonObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "eventNameString",
+ "printedName": "eventNameString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)eventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15eventNameStringSSyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "valueObject",
+ "printedName": "valueObject(forPropertyIdentifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)valueObjectForPropertyIdentifier:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11valueObject21forPropertyIdentifieryXlSgSSSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "valueObjectForPropertyIdentifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "subURLIdString",
+ "printedName": "subURLIdString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)subURLIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14subURLIdStringSSSgyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker8KVAEventC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "eventType",
+ "printedName": "eventType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)eventType",
+ "mangledName": "$s14KochavaTracker8KVAEventC9eventTypeAA0cE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventType",
+ "printedName": "KochavaTracker.KVAEventType",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEventType"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)eventType",
+ "mangledName": "$s14KochavaTracker8KVAEventC9eventTypeAA0cE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)networking",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)networking",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sendAsyncBool",
+ "printedName": "sendAsyncBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sendAsyncBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendAsyncBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSendAsyncBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13sendAsyncBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13sendAsyncBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sendLogMessagePrintBool",
+ "printedName": "sendLogMessagePrintBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sendLogMessagePrintBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sendLogMessagePrintBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSendLogMessagePrintBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC23sendLogMessagePrintBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "serviceLocallyBool",
+ "printedName": "serviceLocallyBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)serviceLocallyBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)serviceLocallyBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setServiceLocallyBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18serviceLocallyBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18serviceLocallyBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "actionString",
+ "printedName": "actionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)actionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)actionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setActionString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12actionStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12actionStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adCampaignIdString",
+ "printedName": "adCampaignIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adCampaignIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adCampaignIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdCampaignIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adCampaignIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adCampaignNameString",
+ "printedName": "adCampaignNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adCampaignNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adCampaignNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdCampaignNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20adCampaignNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adDeviceTypeString",
+ "printedName": "adDeviceTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adDeviceTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adDeviceTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdDeviceTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18adDeviceTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adGroupIdString",
+ "printedName": "adGroupIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adGroupIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adGroupIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdGroupIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15adGroupIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15adGroupIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adGroupNameString",
+ "printedName": "adGroupNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adGroupNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adGroupNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdGroupNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17adGroupNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adGroupNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adMediationNameString",
+ "printedName": "adMediationNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adMediationNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adMediationNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdMediationNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21adMediationNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21adMediationNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adNetworkNameString",
+ "printedName": "adNetworkNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adNetworkNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adNetworkNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdNetworkNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19adNetworkNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adPlacementString",
+ "printedName": "adPlacementString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adPlacementString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adPlacementString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdPlacementString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17adPlacementStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17adPlacementStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adSizeString",
+ "printedName": "adSizeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adSizeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adSizeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdSizeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12adSizeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adSizeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adTypeString",
+ "printedName": "adTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)adTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)adTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAdTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12adTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12adTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appleWatchBool",
+ "printedName": "appleWatchBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appleWatchBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appleWatchBool",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppleWatchBool:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14appleWatchBoolSbvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14appleWatchBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appleWatchIdString",
+ "printedName": "appleWatchIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appleWatchIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appleWatchIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppleWatchIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18appleWatchIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appStoreReceiptBase64EncodedString",
+ "printedName": "appStoreReceiptBase64EncodedString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)appStoreReceiptBase64EncodedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)appStoreReceiptBase64EncodedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setAppStoreReceiptBase64EncodedString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC34appStoreReceiptBase64EncodedStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "backgroundBoolNumber",
+ "printedName": "backgroundBoolNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)backgroundBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)backgroundBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setBackgroundBoolNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20backgroundBoolNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "checkoutAsGuestString",
+ "printedName": "checkoutAsGuestString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)checkoutAsGuestString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)checkoutAsGuestString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCheckoutAsGuestString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21checkoutAsGuestStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "completedBoolNumber",
+ "printedName": "completedBoolNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)completedBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)completedBoolNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCompletedBoolNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19completedBoolNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consent",
+ "printedName": "consent",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)consent",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)consent",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAConsent?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAConsent",
+ "printedName": "KochavaCore.KVAConsent",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAConsent"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setConsent:",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC7consent0A4Core10KVAConsentCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "contentIdString",
+ "printedName": "contentIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)contentIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)contentIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setContentIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15contentIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15contentIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "contentTypeString",
+ "printedName": "contentTypeString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)contentTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)contentTypeString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setContentTypeString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17contentTypeStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17contentTypeStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currencyString",
+ "printedName": "currencyString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)currencyString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)currencyString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCurrencyString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14currencyStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14currencyStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customEventName",
+ "printedName": "customEventName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)customEventName",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)customEventName",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCustomEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15customEventNameSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15customEventNameSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customEventNameString",
+ "printedName": "customEventNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)customEventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "Available"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)customEventNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setCustomEventNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC21customEventNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC21customEventNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "date",
+ "printedName": "date",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)date",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)date",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC4date10Foundation4DateVSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC4date10Foundation4DateVSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "dateString",
+ "printedName": "dateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)dateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)dateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10dateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10dateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "descriptionString",
+ "printedName": "descriptionString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)descriptionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)descriptionString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDescriptionString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17descriptionStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17descriptionStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "destinationString",
+ "printedName": "destinationString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)destinationString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)destinationString",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDestinationString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17destinationStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17destinationStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "durationTimeIntervalNumber",
+ "printedName": "durationTimeIntervalNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)durationTimeIntervalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)durationTimeIntervalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setDurationTimeIntervalNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC26durationTimeIntervalNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "endDate",
+ "printedName": "endDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)endDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)endDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setEndDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC7endDate10Foundation0E0VSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "endDateString",
+ "printedName": "endDateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)endDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)endDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setEndDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13endDateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13endDateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "infoDictionary",
+ "printedName": "infoDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)infoDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)infoDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setInfoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14infoDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "infoString",
+ "printedName": "infoString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)infoString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)infoString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setInfoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10infoStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10infoStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "itemAddedFromString",
+ "printedName": "itemAddedFromString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)itemAddedFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)itemAddedFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setItemAddedFromString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC19itemAddedFromStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "levelString",
+ "printedName": "levelString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)levelString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)levelString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setLevelString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC11levelStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC11levelStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "maxRatingValueDoubleNumber",
+ "printedName": "maxRatingValueDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)maxRatingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)maxRatingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setMaxRatingValueDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC26maxRatingValueDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "nameString",
+ "printedName": "nameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)nameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)nameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC10nameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC10nameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "orderIdString",
+ "printedName": "orderIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)orderIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)orderIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setOrderIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13orderIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13orderIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "originString",
+ "printedName": "originString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)originString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)originString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setOriginString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12originStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12originStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "payloadDictionary",
+ "printedName": "payloadDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)payloadDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)payloadDictionary",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPayloadDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17payloadDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "priceDecimalNumber",
+ "printedName": "priceDecimalNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)priceDecimalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)priceDecimalNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSDecimalNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDecimalNumber",
+ "printedName": "Foundation.NSDecimalNumber",
+ "usr": "c:objc(cs)NSDecimalNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPriceDecimalNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18priceDecimalNumberSo09NSDecimalF0CSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "priceDoubleNumber",
+ "printedName": "priceDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)priceDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)priceDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setPriceDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC17priceDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "quantityDoubleNumber",
+ "printedName": "quantityDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)quantityDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)quantityDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setQuantityDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20quantityDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "ratingValueDoubleNumber",
+ "printedName": "ratingValueDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)ratingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)ratingValueDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setRatingValueDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC23ratingValueDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "receiptIdString",
+ "printedName": "receiptIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)receiptIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)receiptIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setReceiptIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15receiptIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15receiptIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "referralFromString",
+ "printedName": "referralFromString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)referralFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)referralFromString",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setReferralFromString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC18referralFromStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC18referralFromStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "registrationMethodString",
+ "printedName": "registrationMethodString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)registrationMethodString",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)registrationMethodString",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setRegistrationMethodString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC24registrationMethodStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC24registrationMethodStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "resultsString",
+ "printedName": "resultsString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)resultsString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)resultsString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setResultsString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13resultsStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13resultsStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "scoreString",
+ "printedName": "scoreString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)scoreString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)scoreString",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setScoreString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC11scoreStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC11scoreStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "searchTermString",
+ "printedName": "searchTermString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)searchTermString",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)searchTermString",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSearchTermString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC16searchTermStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC16searchTermStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sourceString",
+ "printedName": "sourceString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)sourceString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)sourceString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSourceString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12sourceStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12sourceStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialXDoubleNumber",
+ "printedName": "spatialXDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialXDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialXDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialXDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialXDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialYDoubleNumber",
+ "printedName": "spatialYDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialYDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialYDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialYDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialYDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "spatialZDoubleNumber",
+ "printedName": "spatialZDoubleNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)spatialZDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)spatialZDoubleNumber",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSpatialZDoubleNumber:",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC20spatialZDoubleNumberSo8NSNumberCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startDate",
+ "printedName": "startDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)startDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)startDate",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setStartDate:",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC9startDate10Foundation0E0VSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startDateString",
+ "printedName": "startDateString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)startDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)startDateString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setStartDateString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15startDateStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15startDateStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "successString",
+ "printedName": "successString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)successString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)successString",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setSuccessString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC13successStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC13successStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userIdString",
+ "printedName": "userIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)userIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)userIdString",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUserIdString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC12userIdStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC12userIdStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "uriString",
+ "printedName": "uriString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)uriString",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)uriString",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUriString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC9uriStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC9uriStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userNameString",
+ "printedName": "userNameString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)userNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)userNameString",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setUserNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC14userNameStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC14userNameStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "validatedString",
+ "printedName": "validatedString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(py)validatedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)validatedString",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent(im)setValidatedString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker8KVAEventC15validatedStringSSSgvM",
+ "mangledName": "$s14KochavaTracker8KVAEventC15validatedStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventNameySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName11senderArrayySS_SayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString11senderArrayySS_SayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName14infoDictionaryySS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString14infoDictionaryySS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoDictionary:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoDictionary:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName14infoDictionary11senderArrayySS_SDys11AnyHashableVypGSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoDictionary:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoDictionary:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoDictionary:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString14infoDictionary11senderArrayySS_SDys11AnyHashableVypGSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoDictionary:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName10infoStringySS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString04infoH0ySS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(eventName:infoString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithEventName:infoString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom9eventName10infoString11senderArrayySS_SSSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "sendCustomWithEventName:infoString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "sendCustom",
+ "printedName": "sendCustom(withNameString:infoString:senderArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAEventSenderProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KochavaTracker.KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)sendCustomWithNameString:infoString:senderArray:",
+ "mangledName": "$s14KochavaTracker8KVAEventC10sendCustom14withNameString04infoH011senderArrayySS_SSSgSayAA0C14SenderProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "sendCustomWithNameString:infoString:senderArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventNameACSS_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameStringACXDSS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventName14infoDictionaryACSS_SDys11AnyHashableVypGSgtcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:infoDictionary:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:infoDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:infoDictionary:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameString14infoDictionaryACXDSS_SDys11AnyHashableVypGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:infoDictionary:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(customWithEventName:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(im)initCustomWithEventName:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC19customWithEventName10infoStringACSS_SSSgtcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initCustomWithEventName:infoString:",
+ "declAttributes": [
+ "Dynamic",
+ "Convenience",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Function",
+ "name": "customEvent",
+ "printedName": "customEvent(withNameString:infoString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@CM@KochavaTracker@objc(cs)KVAEvent(cm)customEventWithNameString:infoString:",
+ "mangledName": "$s14KochavaTracker8KVAEventC11customEvent14withNameString04infoH0ACXDSS_SSSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "customEventWithNameString:infoString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent",
+ "mangledName": "$s14KochavaTracker8KVAEventC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEvent",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetTransactionServiceLocallyBoolPropertyProvider",
+ "printedName": "KVANetTransactionServiceLocallyBoolPropertyProvider",
+ "usr": "s:11KochavaCore51KVANetTransactionServiceLocallyBoolPropertyProviderP",
+ "mangledName": "$s11KochavaCore51KVANetTransactionServiceLocallyBoolPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetTransactionSubURLIdStringMethodProvider",
+ "printedName": "KVANetTransactionSubURLIdStringMethodProvider",
+ "usr": "s:11KochavaCore45KVANetTransactionSubURLIdStringMethodProviderP",
+ "mangledName": "$s11KochavaCore45KVANetTransactionSubURLIdStringMethodProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "JavaScriptCore",
+ "printedName": "JavaScriptCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetwork",
+ "printedName": "KVAAdNetwork",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC5startyyF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "conversion",
+ "printedName": "conversion",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)conversion",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)conversion",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setConversion:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC10conversionAA0cD10ConversionCvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didRegisterAppForAttribution",
+ "printedName": "closure_didRegisterAppForAttribution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)closure_didRegisterAppForAttribution",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)closure_didRegisterAppForAttribution",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setClosure_didRegisterAppForAttribution:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC36closure_didRegisterAppForAttributionyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didRegisterAppForAttributionBlock",
+ "printedName": "didRegisterAppForAttributionBlock",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(py)didRegisterAppForAttributionBlock",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)didRegisterAppForAttributionBlock",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetwork) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetwork) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork(im)setDidRegisterAppForAttributionBlock:",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvM",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC33didRegisterAppForAttributionBlockyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork",
+ "mangledName": "$s14KochavaTracker12KVAAdNetworkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetwork",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "AdServices",
+ "printedName": "AdServices",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KVAAppLimitAdTracking",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bool",
+ "printedName": "bool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(py)boolean",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "boolean",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(im)boolean",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking(im)setBoolean:",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvM",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC4boolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking",
+ "mangledName": "$s14KochavaTracker21KVAAppLimitAdTrackingC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAppLimitAdTracking",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KVAAppTrackingTransparency",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC5startyyF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "autoRequestTrackingAuthorizationBool",
+ "printedName": "autoRequestTrackingAuthorizationBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)autoRequestTrackingAuthorizationBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)autoRequestTrackingAuthorizationBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setAutoRequestTrackingAuthorizationBool:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC011autoRequestD17AuthorizationBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "authorizationStatusWaitTimeInterval",
+ "printedName": "authorizationStatusWaitTimeInterval",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)authorizationStatusWaitTimeInterval",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)authorizationStatusWaitTimeInterval",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setAuthorizationStatusWaitTimeInterval:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC35authorizationStatusWaitTimeIntervalSdvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "enabledBool",
+ "printedName": "enabledBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)enabledBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)enabledBool",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)setEnabledBool:",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvM",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC11enabledBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "authorizationStatusString",
+ "printedName": "authorizationStatusString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(py)authorizationStatusString",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC25authorizationStatusStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency(im)authorizationStatusString",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC25authorizationStatusStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency",
+ "mangledName": "$s14KochavaTracker26KVAAppTrackingTransparencyC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAppTrackingTransparency",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAttribution",
+ "printedName": "KVAAttribution",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC5startyyF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker14KVAAttributionC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "retrieveResult",
+ "printedName": "retrieveResult(closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)retrieveResultWithCompletionHandler:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC14retrieveResult19closure_didCompleteyyAA0cE0Cc_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "retrieveResultWithCompletionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "result",
+ "printedName": "result",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)result",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6resultAA0C6ResultCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)result",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC6resultAA0C6ResultCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didRetrieveResult",
+ "printedName": "closure_didRetrieveResult",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)closure_didRetrieveResult",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)closure_didRetrieveResult",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAttribution, KochavaTracker.KVAAttributionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)setClosure_didRetrieveResult:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvM",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC25closure_didRetrieveResultyAC_AA0cG0CtcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "retrieveResultBool",
+ "printedName": "retrieveResultBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(py)retrieveResultBool",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)retrieveResultBool",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution(im)setRetrieveResultBool:",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvM",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC18retrieveResultBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution",
+ "mangledName": "$s14KochavaTracker14KVAAttributionC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAttribution",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAttributionResult",
+ "printedName": "KVAAttributionResult",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "attributedBool",
+ "printedName": "attributedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)attributedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC14attributedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)attributedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC14attributedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "firstInstallBool",
+ "printedName": "firstInstallBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)firstInstallBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC16firstInstallBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)firstInstallBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC16firstInstallBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawDictionary",
+ "printedName": "rawDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)rawDictionary",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13rawDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)rawDictionary",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13rawDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "retrievedBool",
+ "printedName": "retrievedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(py)retrievedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13retrievedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)retrievedBool",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC13retrievedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttributionResult",
+ "printedName": "KochavaTracker.KVAAttributionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult(im)init",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttributionResult",
+ "mangledName": "$s14KochavaTracker20KVAAttributionResultC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAttributionResult",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KVACustomIdentifiers",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers(im)registerWithName:identifier:",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8register4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withNameString:identifierString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers(im)registerWithNameString:identifierString:",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC8register14withNameString010identifierH0ySS_SStF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "objc_name": "registerWithNameString:identifierString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers",
+ "mangledName": "$s14KochavaTracker20KVACustomIdentifiersC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVACustomIdentifiers",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplink",
+ "printedName": "KVADeeplink",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19closure_didCompletey10Foundation3URLVSg_yACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL17completionHandlery10Foundation0F0VSg_yACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19timeoutTimeInterval19closure_didCompletey10Foundation3URLVSg_SdyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:timeoutTimeInterval:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL19timeoutTimeInterval17completionHandlery10Foundation0F0VSg_SdyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:processor:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:processor:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url9processor19closure_didCompletey10Foundation3URLVSg_AA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:processor:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:processor:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:processor:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL9processor17completionHandlery10Foundation0F0VSg_AA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:processor:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(url:timeoutTimeInterval:processor:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:processor:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process3url19timeoutTimeInterval9processor19closure_didCompletey10Foundation3URLVSg_SdAA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:processor:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(withURL:timeoutTimeInterval:processor:completionHandler:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.URL?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "URL",
+ "printedName": "Foundation.URL",
+ "usr": "s:10Foundation3URLV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KochavaTracker.KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(cm)processWithURL:timeoutTimeInterval:processor:completionHandler:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7process7withURL19timeoutTimeInterval9processor17completionHandlery10Foundation0F0VSg_SdAA29KVADeeplinksProcessorProvider_pSgyACcSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "processWithURL:timeoutTimeInterval:processor:completionHandler:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeeplinkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isEqual",
+ "printedName": "isEqual(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)isEqual:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7isEqualySbypSgF",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "isEqual:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7executeyyF",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "urlString",
+ "printedName": "urlString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)urlString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)urlString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setUrlString:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC9urlStringSSSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC9urlStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)networking",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)networking",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "destinationString",
+ "printedName": "destinationString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)destinationString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)destinationString",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setDestinationString:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC17destinationStringSSSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC17destinationStringSSSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawDictionary",
+ "printedName": "rawDictionary",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(py)rawDictionary",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)rawDictionary",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink(im)setRawDictionary:",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvM",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC13rawDictionarySDys11AnyHashableVypGSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink",
+ "mangledName": "$s14KochavaTracker11KVADeeplinkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeeplink",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KVADeeplinksProcessor",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(deeplink:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor(im)processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP7process8deeplink19timeoutTimeInterval19closure_didCompleteyAA11KVADeeplinkC_SdyAIcSgtF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVADeeplinksProcessor>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KVADeeplinksProcessorProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "deeplinksProcessor",
+ "printedName": "deeplinksProcessor",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider(py)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP09deeplinksD0AA0cD0_pSgvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider(im)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP09deeplinksD0AA0cD0_pSgvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVADeeplinksProcessorProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeeplinks",
+ "printedName": "KVADeeplinks",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "copy",
+ "printedName": "copy(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "ObjectiveC.NSZone?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSZone",
+ "printedName": "ObjectiveC.NSZone",
+ "usr": "s:10ObjectiveC6NSZoneV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)copyWithZone:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC4copy4withyp10ObjectiveC6NSZoneVSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "copyWithZone:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker12KVADeeplinksC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "augmentDeferredPrefetch",
+ "printedName": "augmentDeferredPrefetch(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)augmentDeferredPrefetchWithName:identifier:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC23augmentDeferredPrefetch4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "augmentDeferredPrefetchWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "process",
+ "printedName": "process(deeplink:timeoutTimeInterval:closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVADeeplink) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVADeeplink) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplink",
+ "printedName": "KochavaTracker.KVADeeplink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplink"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks(im)processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7process8deeplink19timeoutTimeInterval19closure_didCompleteyAA11KVADeeplinkC_SdyAIcSgtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "processDeeplink:timeoutTimeInterval:closure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks",
+ "mangledName": "$s14KochavaTracker12KVADeeplinksC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeeplinks",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor",
+ "mangledName": "$s14KochavaTracker21KVADeeplinksProcessorP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVADeviceId",
+ "printedName": "KVADeviceId",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker11KVADeviceIdC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "string",
+ "printedName": "string",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId(py)string",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6stringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId(im)string",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC6stringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId",
+ "mangledName": "$s14KochavaTracker11KVADeviceIdC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVADeviceId",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEvents",
+ "printedName": "KVAEvents",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker9KVAEventsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker9KVAEventsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker9KVAEventsC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker9KVAEventsC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(event:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents(im)sendEvent:",
+ "mangledName": "$s14KochavaTracker9KVAEventsC4send5eventyAA8KVAEventC_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "sendEvent:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker9KVAEventsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents",
+ "mangledName": "$s14KochavaTracker9KVAEventsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAEvents",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAEventSender",
+ "printedName": "KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KVAAdNetworkConversion",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(cm)kva_from:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "kva_from:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC5startyyF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didUpdatePostbackValue",
+ "printedName": "closure_didUpdatePostbackValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)closure_didUpdatePostbackValue",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)closure_didUpdatePostbackValue",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)setClosure_didUpdatePostbackValue:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvM",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC30closure_didUpdatePostbackValueyAC_AA0cdE6ResultCtcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didUpdateValueBlock",
+ "printedName": "didUpdateValueBlock",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)didUpdateValueBlock",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)didUpdateValueBlock",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Tuple",
+ "printedName": "(KochavaTracker.KVAAdNetworkConversion, KochavaTracker.KVAAdNetworkConversionResult)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversion",
+ "printedName": "KochavaTracker.KVAAdNetworkConversion",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ]
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)setDidUpdateValueBlock:",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvM",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC19didUpdateValueBlockyAC_AA0cdE6ResultCtcSgvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "result",
+ "printedName": "result",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(py)result",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6resultAA0cdE6ResultCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KochavaTracker.KVAAdNetworkConversionResult",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion(im)result",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC6resultAA0cdE6ResultCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversion",
+ "mangledName": "$s14KochavaTracker22KVAAdNetworkConversionC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetworkConversion",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAIdentityLink",
+ "printedName": "KVAIdentityLink",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(name:identifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink(im)registerWithName:identifier:",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8register4name10identifierySS_SStF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerWithName:identifier:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withNameString:identifierString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink(im)registerWithNameString:identifierString:",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC8register14withNameString010identifierH0ySS_SStF",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "objc_name": "registerWithNameString:identifierString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink",
+ "mangledName": "$s14KochavaTracker15KVAIdentityLinkC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAIdentityLink",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UserNotifications",
+ "printedName": "UserNotifications",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAInstall",
+ "printedName": "KVAInstall",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker10KVAInstallC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker10KVAInstallC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC5startyyF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVAInstallC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker10KVAInstallC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker10KVAInstallC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "didStartFirstDate",
+ "printedName": "didStartFirstDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall(py)didStartFirstDate",
+ "mangledName": "$s14KochavaTracker10KVAInstallC17didStartFirstDate10Foundation0G0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall(im)didStartFirstDate",
+ "mangledName": "$s14KochavaTracker10KVAInstallC17didStartFirstDate10Foundation0G0VSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall",
+ "mangledName": "$s14KochavaTracker10KVAInstallC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAInstall",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "JavaScriptCore",
+ "printedName": "JavaScriptCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAAdNetworkConversionResult",
+ "printedName": "KVAAdNetworkConversionResult",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "copy",
+ "printedName": "copy(with:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "ObjectiveC.NSZone?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSZone",
+ "printedName": "ObjectiveC.NSZone",
+ "usr": "s:10ObjectiveC6NSZoneV"
+ }
+ ],
+ "hasDefaultArg": true,
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)copyWithZone:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC4copy4withyp10ObjectiveC6NSZoneVSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "copyWithZone:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(cm)kva_from:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "kva_from:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)kva_asForContext:",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "kva_asForContext:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "valueInt",
+ "printedName": "valueInt()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)valueInt",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC8valueIntSiyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "coarseValue",
+ "printedName": "coarseValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)coarseValue",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11coarseValueSo04SKAdd6CoarseeH0aSgvp",
+ "moduleName": "KochavaTracker",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)coarseValue",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11coarseValueSo04SKAdd6CoarseeH0aSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "error",
+ "printedName": "error",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Error?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)error",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC5errors5Error_pSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Error?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Error",
+ "printedName": "Swift.Error",
+ "usr": "s:s5ErrorP"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)error",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC5errors5Error_pSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "modelString",
+ "printedName": "modelString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)modelString",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11modelStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)modelString",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC11modelStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "translatedValueInt",
+ "printedName": "translatedValueInt",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvp",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.Int?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Int",
+ "printedName": "Swift.Int",
+ "usr": "s:Si"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvg",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC18translatedValueIntSiSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "translatedValueIntNumber",
+ "printedName": "translatedValueIntNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)translatedValueIntNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC24translatedValueIntNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)translatedValueIntNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC24translatedValueIntNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "rawValueNumber",
+ "printedName": "rawValueNumber",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(py)rawValueNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC14rawValueNumberSo8NSNumberCSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.NSNumber?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSNumber",
+ "printedName": "Foundation.NSNumber",
+ "usr": "c:objc(cs)NSNumber"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult(im)rawValueNumber",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC14rawValueNumberSo8NSNumberCSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetworkConversionResult",
+ "mangledName": "$s14KochavaTracker28KVAAdNetworkConversionResultC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAAdNetworkConversionResult",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UserNotifications",
+ "printedName": "UserNotifications",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotifications",
+ "printedName": "KVAPushNotifications",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC5startyyF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(token:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)registerToken:",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC8register5tokenyAA0cD5TokenC_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "registerToken:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "enabledBool",
+ "printedName": "enabledBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(py)enabledBool",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)enabledBool",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications(im)setEnabledBool:",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvM",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC11enabledBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications",
+ "mangledName": "$s14KochavaTracker20KVAPushNotificationsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAPushNotifications",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerGeneral",
+ "printedName": "KVATrackerGeneral",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC5startyyF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "instanceCreatedDate",
+ "printedName": "instanceCreatedDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvp",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvg",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC19instanceCreatedDate10Foundation0G0Vvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startSequenceDidCompleteNotificationName",
+ "printedName": "startSequenceDidCompleteNotificationName",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Name",
+ "printedName": "Foundation.NSNotification.Name",
+ "usr": "c:@T@NSNotificationName"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avpZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Name",
+ "printedName": "Foundation.NSNotification.Name",
+ "usr": "c:@T@NSNotificationName"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avgZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC40startSequenceDidCompleteNotificationNameSo014NSNotificationJ0avgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral",
+ "mangledName": "$s14KochavaTracker17KVATrackerGeneralC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerGeneral",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KVAPushNotificationsToken",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(data:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithData:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register4datay10Foundation4DataV_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithData:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withData:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register8withDatay10Foundation0H0V_tFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register8withDatay10Foundation0H0V_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(data:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithData:registrarArray:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register4data14registrarArrayy10Foundation4DataV_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithData:registrarArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withData:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register8withData14registrarArrayy10Foundation0H0V_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register8withData14registrarArrayy10Foundation0H0V_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(dataHexString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithDataHexString:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register13dataHexStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithDataHexString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withDataHexString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexStringySS_tFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexStringySS_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(dataHexString:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(cm)registerWithDataHexString:registrarArray:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register13dataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "objc_name": "registerWithDataHexString:registrarArray:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(withDataHexString:registrarArray:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Array",
+ "printedName": "[KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider"
+ }
+ ],
+ "usr": "s:Sa"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8register17withDataHexString14registrarArrayySS_SayAA0cdE17RegistrarProvider_pGSgtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "isEqual",
+ "printedName": "isEqual(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)isEqual:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7isEqualySbypSgF",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "isEqual:",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "execute",
+ "printedName": "execute()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7executeyyF",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7executeyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "data",
+ "printedName": "data",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)data",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC4data10Foundation4DataVSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Data?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Data",
+ "printedName": "Foundation.Data",
+ "usr": "s:10Foundation4DataV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)data",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC4data10Foundation4DataVSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "providedDate",
+ "printedName": "providedDate",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)providedDate",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC12providedDate10Foundation0G0VSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Foundation.Date?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Date",
+ "printedName": "Foundation.Date",
+ "usr": "s:10Foundation4DateV"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)providedDate",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC12providedDate10Foundation0G0VSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "WeakStorage",
+ "printedName": "KochavaCore.KVANetworking?"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(py)networking",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "networking",
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "ObjC",
+ "HasStorage",
+ "ReferenceOwnership",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "ownership": 1,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)networking",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "networking",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVANetworking?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)setNetworking:",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvs",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "objc_name": "setNetworking:",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvM",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC10networking0A4Core13KVANetworkingCSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken(im)init",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken",
+ "mangledName": "$s14KochavaTracker25KVAPushNotificationsTokenC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVAPushNotificationsToken",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAExecutable",
+ "printedName": "KVAExecutable",
+ "usr": "s:11KochavaCore13KVAExecutableP",
+ "mangledName": "$s11KochavaCore13KVAExecutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVANetworkingSetterProvider",
+ "printedName": "KVANetworkingSetterProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVANetworkingSetterProvider",
+ "mangledName": "$s11KochavaCore27KVANetworkingSetterProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KVAPushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "register",
+ "printedName": "register(token:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsToken",
+ "printedName": "KochavaTracker.KVAPushNotificationsToken",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotificationsToken"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar(im)registerToken:",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP8register5tokenyAA0cdE0C_tF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAPushNotificationsTokenRegistrar>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "registerToken:",
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker34KVAPushNotificationsTokenRegistrarP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KVAPushNotificationsTokenRegistrarProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "pushNotificationsTokenRegistrar",
+ "printedName": "pushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider(py)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP04pushdeF0AA0cdeF0_pvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider(im)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP04pushdeF0AA0cdeF0_pvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAPushNotificationsTokenRegistrarProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATracker",
+ "printedName": "KVATracker",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)shared",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6sharedACvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)shared",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6sharedACvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "shared_optional",
+ "printedName": "shared_optional",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVATracker?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)shared_optional",
+ "mangledName": "$s14KochavaTracker10KVATrackerC15shared_optionalACSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVATracker?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)shared_optional",
+ "mangledName": "$s14KochavaTracker10KVATrackerC15shared_optionalACSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedInstance",
+ "printedName": "sharedInstance",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedInstance",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14sharedInstanceyXlvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedInstance",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14sharedInstanceyXlvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)init",
+ "mangledName": "$s14KochavaTracker10KVATrackerCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Convenience",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "init_kind": "Convenience"
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init(storageIdentifier:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATracker",
+ "printedName": "KochavaTracker.KVATracker",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)initWithStorageIdentifier:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17storageIdentifierACSSSg_tcfc",
+ "moduleName": "KochavaTracker",
+ "objc_name": "initWithStorageIdentifier:",
+ "declAttributes": [
+ "Required",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "init_kind": "Designated"
+ },
+ {
+ "kind": "Function",
+ "name": "tracker",
+ "printedName": "tracker()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)tracker",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7trackerACXDyFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "tracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "tracker",
+ "printedName": "tracker(withStorageIdString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)trackerWithStorageIdString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7tracker19withStorageIdStringACXDSSSg_tFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "objc_name": "trackerWithStorageIdString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "configure",
+ "printedName": "configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)configureWith:context:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "configureWith:context:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker10KVATrackerC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker10KVATrackerC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(withAppGUIDString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithAppGUIDString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start17withAppGUIDStringySS_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithAppGUIDString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(withPartnerNameString:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithPartnerNameString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start21withPartnerNameStringySS_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithPartnerNameString:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)start",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC5start19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "startWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stop",
+ "printedName": "stop()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)stop",
+ "mangledName": "$s14KochavaTracker10KVATrackerC4stopyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "stop",
+ "printedName": "stop(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)stopWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC4stop19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "stopWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)invalidate",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate(logMessagePrintBool:asyncBool:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)invalidateWithLogMessagePrintBool:asyncBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10invalidate19logMessagePrintBool05asyncH0ySb_SbtF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "invalidateWithLogMessagePrintBool:asyncBool:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "description",
+ "printedName": "description",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)description",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11descriptionSSvp",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "Override",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)description",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11descriptionSSvg",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "objc_name": "description",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "adNetwork",
+ "printedName": "adNetwork",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)adNetwork",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9adNetworkAA05KVAAdE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdNetwork",
+ "printedName": "KochavaTracker.KVAAdNetwork",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAdNetwork"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)adNetwork",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9adNetworkAA05KVAAdE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appLimitAdTracking",
+ "printedName": "appLimitAdTracking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KochavaTracker.KVAAppLimitAdTracking",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appLimitAdTracking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18appLimitAdTrackingAA06KVAAppefG0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppLimitAdTracking",
+ "printedName": "KochavaTracker.KVAAppLimitAdTracking",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppLimitAdTracking"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appLimitAdTracking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18appLimitAdTrackingAA06KVAAppefG0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appTrackingTransparency",
+ "printedName": "appTrackingTransparency",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KochavaTracker.KVAAppTrackingTransparency",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appTrackingTransparency",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23appTrackingTransparencyAA06KVAAppeF0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAppTrackingTransparency",
+ "printedName": "KochavaTracker.KVAAppTrackingTransparency",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAppTrackingTransparency"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appTrackingTransparency",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23appTrackingTransparencyAA06KVAAppeF0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "attribution",
+ "printedName": "attribution",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)attribution",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11attributionAA14KVAAttributionCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAttribution",
+ "printedName": "KochavaTracker.KVAAttribution",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAAttribution"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)attribution",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11attributionAA14KVAAttributionCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "config",
+ "printedName": "config",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)config",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6configAA0C6ConfigCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)config",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6configAA0C6ConfigCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "customIdentifiers",
+ "printedName": "customIdentifiers",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KochavaTracker.KVACustomIdentifiers",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)customIdentifiers",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17customIdentifiersAA09KVACustomE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVACustomIdentifiers",
+ "printedName": "KochavaTracker.KVACustomIdentifiers",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVACustomIdentifiers"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)customIdentifiers",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17customIdentifiersAA09KVACustomE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplinks",
+ "printedName": "deeplinks",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinks",
+ "printedName": "KochavaTracker.KVADeeplinks",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deeplinks",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9deeplinksAA12KVADeeplinksCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinks",
+ "printedName": "KochavaTracker.KVADeeplinks",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeeplinks"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deeplinks",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9deeplinksAA12KVADeeplinksCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceId",
+ "printedName": "deviceId",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeviceId",
+ "printedName": "KochavaTracker.KVADeviceId",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deviceId",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8deviceIdAA09KVADeviceE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeviceId",
+ "printedName": "KochavaTracker.KVADeviceId",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVADeviceId"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deviceId",
+ "mangledName": "$s14KochavaTracker10KVATrackerC8deviceIdAA09KVADeviceE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "events",
+ "printedName": "events",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvents",
+ "printedName": "KochavaTracker.KVAEvents",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvp",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvents",
+ "printedName": "KochavaTracker.KVAEvents",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvents"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvg",
+ "mangledName": "$s14KochavaTracker10KVATrackerC6eventsAA9KVAEventsCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "general",
+ "printedName": "general",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerGeneral",
+ "printedName": "KochavaTracker.KVATrackerGeneral",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)general",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7generalAA0C7GeneralCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerGeneral",
+ "printedName": "KochavaTracker.KVATrackerGeneral",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerGeneral"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)general",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7generalAA0C7GeneralCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "identityLink",
+ "printedName": "identityLink",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAIdentityLink",
+ "printedName": "KochavaTracker.KVAIdentityLink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)identityLink",
+ "mangledName": "$s14KochavaTracker10KVATrackerC12identityLinkAA011KVAIdentityE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAIdentityLink",
+ "printedName": "KochavaTracker.KVAIdentityLink",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAIdentityLink"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)identityLink",
+ "mangledName": "$s14KochavaTracker10KVATrackerC12identityLinkAA011KVAIdentityE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "install",
+ "printedName": "install",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAInstall",
+ "printedName": "KochavaTracker.KVAInstall",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)install",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7installAA10KVAInstallCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAInstall",
+ "printedName": "KochavaTracker.KVAInstall",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAInstall"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)install",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7installAA10KVAInstallCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networking",
+ "printedName": "networking",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)networking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10networking0A4Core13KVANetworkingCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVANetworking",
+ "printedName": "KochavaCore.KVANetworking",
+ "usr": "c:@M@KochavaCore@objc(cs)KVANetworking"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)networking",
+ "mangledName": "$s14KochavaTracker10KVATrackerC10networking0A4Core13KVANetworkingCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushNotifications",
+ "printedName": "pushNotifications",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotifications",
+ "printedName": "KochavaTracker.KVAPushNotifications",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)pushNotifications",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17pushNotificationsAA07KVAPushE0Cvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotifications",
+ "printedName": "KochavaTracker.KVAPushNotifications",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAPushNotifications"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)pushNotifications",
+ "mangledName": "$s14KochavaTracker10KVATrackerC17pushNotificationsAA07KVAPushE0Cvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appLimitAdTrackingBool",
+ "printedName": "appLimitAdTrackingBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)appLimitAdTrackingBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)appLimitAdTrackingBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)setAppLimitAdTrackingBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvM",
+ "mangledName": "$s14KochavaTracker10KVATrackerC22appLimitAdTrackingBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceIdString",
+ "printedName": "deviceIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deviceIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14deviceIdStringSSSgvp",
+ "moduleName": "KochavaTracker",
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deviceIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC14deviceIdStringSSSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "privacy",
+ "printedName": "privacy",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacy",
+ "printedName": "KochavaCore.KVAPrivacy",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAPrivacy"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)privacy",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7privacy0A4Core10KVAPrivacyCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacy",
+ "printedName": "KochavaCore.KVAPrivacy",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAPrivacy"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)privacy",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7privacy0A4Core10KVAPrivacyCvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sleepBool",
+ "printedName": "sleepBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)sleepBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)sleepBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)setSleepBool:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC9sleepBoolSbvM",
+ "mangledName": "$s14KochavaTracker10KVATrackerC9sleepBoolSbvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deeplinksProcessor",
+ "printedName": "deeplinksProcessor",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18deeplinksProcessorAA012KVADeeplinksE0_pSgvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "deeplinksProcessor",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVADeeplinksProcessor",
+ "printedName": "KochavaTracker.KVADeeplinksProcessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessor"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)deeplinksProcessor",
+ "mangledName": "$s14KochavaTracker10KVATrackerC18deeplinksProcessorAA012KVADeeplinksE0_pSgvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "deeplinksProcessor",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "eventSender",
+ "printedName": "eventSender",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)eventSender",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11eventSenderAA08KVAEventE0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "eventSender",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)eventSender",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11eventSenderAA08KVAEventE0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "eventSender",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "privacyProfileRegistrar",
+ "printedName": "privacyProfileRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacyProfileRegistrar",
+ "printedName": "KochavaCore.KVAPrivacyProfileRegistrar",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)privacyProfileRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23privacyProfileRegistrar0A4Core010KVAPrivacyeF0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "privacyProfileRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPrivacyProfileRegistrar",
+ "printedName": "KochavaCore.KVAPrivacyProfileRegistrar",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)privacyProfileRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23privacyProfileRegistrar0A4Core010KVAPrivacyeF0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "privacyProfileRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "pushNotificationsTokenRegistrar",
+ "printedName": "pushNotificationsTokenRegistrar",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC31pushNotificationsTokenRegistrarAA07KVAPushefG0_pvp",
+ "moduleName": "KochavaTracker",
+ "objc_name": "pushNotificationsTokenRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAPushNotificationsTokenRegistrar",
+ "printedName": "KochavaTracker.KVAPushNotificationsTokenRegistrar",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrar"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)pushNotificationsTokenRegistrar",
+ "mangledName": "$s14KochavaTracker10KVATrackerC31pushNotificationsTokenRegistrarAA07KVAPushefG0_pvg",
+ "moduleName": "KochavaTracker",
+ "objc_name": "pushNotificationsTokenRegistrar",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker10KVATrackerC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedStorageIdentifier",
+ "printedName": "sharedStorageIdentifier",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedStorageIdentifier",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedStorageIdentifier",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)setSharedStorageIdentifier:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvsZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvMZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC23sharedStorageIdentifierSSSgvMZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedStorageIdString",
+ "printedName": "sharedStorageIdString",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cpy)sharedStorageIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "Available"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)sharedStorageIdString",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(cm)setSharedStorageIdString:",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvsZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvMZ",
+ "mangledName": "$s14KochavaTracker10KVATrackerC21sharedStorageIdStringSSSgvMZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "deprecated": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "Available"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "startedBool",
+ "printedName": "startedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(py)startedBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11startedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker(im)startedBool",
+ "mangledName": "$s14KochavaTracker10KVATrackerC11startedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATracker",
+ "mangledName": "$s14KochavaTracker10KVATrackerC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVADeeplinksProcessorProvider",
+ "printedName": "KVADeeplinksProcessorProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVADeeplinksProcessorProvider",
+ "mangledName": "$s14KochavaTracker29KVADeeplinksProcessorProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KVAEventSenderProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatableWithOptions",
+ "printedName": "KVAInvalidatableWithOptions",
+ "usr": "s:11KochavaCore27KVAInvalidatableWithOptionsP",
+ "mangledName": "$s11KochavaCore27KVAInvalidatableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPrivacyProfileRegistrarProvider",
+ "printedName": "KVAPrivacyProfileRegistrarProvider",
+ "usr": "c:@M@KochavaCore@objc(pl)KVAPrivacyProfileRegistrarProvider",
+ "mangledName": "$s11KochavaCore34KVAPrivacyProfileRegistrarProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAPushNotificationsTokenRegistrarProvider",
+ "printedName": "KVAPushNotificationsTokenRegistrarProvider",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAPushNotificationsTokenRegistrarProvider",
+ "mangledName": "$s14KochavaTracker42KVAPushNotificationsTokenRegistrarProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVASharedPropertyProvider",
+ "printedName": "KVASharedPropertyProvider",
+ "usr": "s:11KochavaCore25KVASharedPropertyProviderP",
+ "mangledName": "$s11KochavaCore25KVASharedPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartableWithOptions",
+ "printedName": "KVAStartableWithOptions",
+ "usr": "s:11KochavaCore23KVAStartableWithOptionsP",
+ "mangledName": "$s11KochavaCore23KVAStartableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStoppable",
+ "printedName": "KVAStoppable",
+ "usr": "s:11KochavaCore12KVAStoppableP",
+ "mangledName": "$s11KochavaCore12KVAStoppableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStoppableWithOptions",
+ "printedName": "KVAStoppableWithOptions",
+ "usr": "s:11KochavaCore23KVAStoppableWithOptionsP",
+ "mangledName": "$s11KochavaCore23KVAStoppableWithOptionsP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerConfig",
+ "printedName": "KVATrackerConfig",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC5startyyF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "invalidate",
+ "printedName": "invalidate()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC10invalidateyyF",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC10invalidateyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "retrieve",
+ "printedName": "retrieve(closure_didComplete:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)retrieveWithClosure_didComplete:",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC8retrieve19closure_didCompleteyyACc_tF",
+ "moduleName": "KochavaTracker",
+ "objc_name": "retrieveWithClosure_didComplete:",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "closure_didComplete",
+ "printedName": "closure_didComplete",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)closure_didComplete",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)closure_didComplete",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Set",
+ "printedName": "Set()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "((KochavaTracker.KVATrackerConfig) -> ())?",
+ "children": [
+ {
+ "kind": "TypeFunc",
+ "name": "Function",
+ "printedName": "(KochavaTracker.KVATrackerConfig) -> ()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerConfig",
+ "printedName": "KochavaTracker.KVATrackerConfig",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)setClosure_didComplete:",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvs",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "set"
+ },
+ {
+ "kind": "Accessor",
+ "name": "Modify",
+ "printedName": "Modify()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvM",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC19closure_didCompleteyACcSgvM",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "_modify"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "consentGDPRAppliesBool",
+ "printedName": "consentGDPRAppliesBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)consentGDPRAppliesBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC22consentGDPRAppliesBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)consentGDPRAppliesBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC22consentGDPRAppliesBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "collectedBool",
+ "printedName": "collectedBool",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(py)collectedBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13collectedBoolSbvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig(im)collectedBool",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC13collectedBoolSbvg",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerConfig",
+ "mangledName": "$s14KochavaTracker16KVATrackerConfigC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerConfig",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAInvalidatable",
+ "printedName": "KVAInvalidatable",
+ "usr": "s:11KochavaCore16KVAInvalidatableP",
+ "mangledName": "$s11KochavaCore16KVAInvalidatableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "StoreKit",
+ "printedName": "StoreKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "AdSupport",
+ "printedName": "AdSupport",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "AVFoundation",
+ "printedName": "AVFoundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "CoreTelephony",
+ "printedName": "CoreTelephony",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "DeviceCheck",
+ "printedName": "DeviceCheck",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "SystemConfiguration",
+ "printedName": "SystemConfiguration",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "WebKit",
+ "printedName": "WebKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerDatapoints",
+ "printedName": "KVATrackerDatapoints",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC8kva_fromyACXDSgypSgFZ",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC8kva_fromyACXDSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:initializedObject:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Self?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "DynamicSelf",
+ "printedName": "Self"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC8kva_from_17initializedObjectACXDSgypSg_AGtFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_as",
+ "printedName": "kva_as(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "AnyObject?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC6kva_as10forContextyXlSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "key",
+ "printedName": "key(forContext:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.AnyHashable?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC3key10forContexts11AnyHashableVSg0A4Core10KVAContextCSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_configure",
+ "printedName": "kva_configure(with:context:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "KochavaCore.KVAContext?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAContext",
+ "printedName": "KochavaCore.KVAContext",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAContext"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC13kva_configure4with7contextyypSg_0A4Core10KVAContextCSgtF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "start",
+ "printedName": "start()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC5startyyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC5startyyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleDisplayNameStringAdapter",
+ "printedName": "appMainBundleDisplayNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37appMainBundleDisplayNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleIdentifierStringAdapter",
+ "printedName": "appMainBundleIdentifierStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36appMainBundleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleShortVersionStringAdapter",
+ "printedName": "appMainBundleShortVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38appMainBundleShortVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appMainBundleVersionStringAdapter",
+ "printedName": "appMainBundleVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33appMainBundleVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "appStoreReceiptDataAdapter",
+ "printedName": "appStoreReceiptDataAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC26appStoreReceiptDataAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "architectureStringAdapter",
+ "printedName": "architectureStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25architectureStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "batteryLevelPercentageIntAdapter",
+ "printedName": "batteryLevelPercentageIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32batteryLevelPercentageIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "batteryStateStringAdapter",
+ "printedName": "batteryStateStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25batteryStateStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "bootDateAdapter",
+ "printedName": "bootDateAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15bootDateAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "carrierNameStringAdapter",
+ "printedName": "carrierNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24carrierNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "cellularTypeStringAdapter",
+ "printedName": "cellularTypeStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25cellularTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currentDateAdapter",
+ "printedName": "currentDateAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC18currentDateAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "currentLocaleIdentifierStringAdapter",
+ "printedName": "currentLocaleIdentifierStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC36currentLocaleIdentifierStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceLimitAdTrackingBoolAdapter",
+ "printedName": "deviceLimitAdTrackingBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC32deviceLimitAdTrackingBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "deviceLimitAdTrackingBool",
+ "printedName": "deviceLimitAdTrackingBool()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Bool",
+ "printedName": "Swift.Bool",
+ "usr": "s:Sb"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25deviceLimitAdTrackingBoolSbyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25deviceLimitAdTrackingBoolSbyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "deviceModelStringAdapter",
+ "printedName": "deviceModelStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC24deviceModelStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceOrientationStringAdapter",
+ "printedName": "deviceOrientationStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30deviceOrientationStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "deviceSystemNameStringAdapter",
+ "printedName": "deviceSystemNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29deviceSystemNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "firstPreferredLanguageStringAdapter",
+ "printedName": "firstPreferredLanguageStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35firstPreferredLanguageStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "hardwareMachineModelIdStringAdapter",
+ "printedName": "hardwareMachineModelIdStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC35hardwareMachineModelIdStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "iabUSPrivacyStringAdapter",
+ "printedName": "iabUSPrivacyStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25iabUSPrivacyStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "idctDataAdapter",
+ "printedName": "idctDataAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC15idctDataAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Function",
+ "name": "idfaString",
+ "printedName": "idfaString()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Swift.String?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC10idfaStringSSSgyF",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC10idfaStringSSSgyF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Var",
+ "name": "idfaStringAdapter",
+ "printedName": "idfaStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfaStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "idfvStringAdapter",
+ "printedName": "idfvStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC17idfvStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "ipAddressStringAdapter",
+ "printedName": "ipAddressStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22ipAddressStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "localTimezoneNameStringAdapter",
+ "printedName": "localTimezoneNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC30localTimezoneNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenBrightnessNumberAdapter",
+ "printedName": "mainScreenBrightnessNumberAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC33mainScreenBrightnessNumberAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenNativeBoundsHeightIntAdapter",
+ "printedName": "mainScreenNativeBoundsHeightIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC38mainScreenNativeBoundsHeightIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mainScreenNativeBoundsWidthIntAdapter",
+ "printedName": "mainScreenNativeBoundsWidthIntAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC37mainScreenNativeBoundsWidthIntAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "minimumOSVersionStringAdapter",
+ "printedName": "minimumOSVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29minimumOSVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "mutator",
+ "printedName": "mutator",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAMutator",
+ "printedName": "KochavaCore.KVAMutator",
+ "usr": "s:11KochavaCore10KVAMutatorC"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC7mutator0A4Core10KVAMutatorCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "networkConnectionTypeStringAdapter",
+ "printedName": "networkConnectionTypeStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34networkConnectionTypeStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "osGenuineBoolAdapter",
+ "printedName": "osGenuineBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC20osGenuineBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "osVersionStringAdapter",
+ "printedName": "osVersionStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22osVersionStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "platformNameStringAdapter",
+ "printedName": "platformNameStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC25platformNameStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sdkGeneratedUserAgentStringAdapter",
+ "printedName": "sdkGeneratedUserAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC34sdkGeneratedUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "userAgentStringAdapter",
+ "printedName": "userAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC22userAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "volumeNumberAdapter",
+ "printedName": "volumeNumberAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC19volumeNumberAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "vpnBoolAdapter",
+ "printedName": "vpnBoolAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC14vpnBoolAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "webViewUserAgentStringAdapter",
+ "printedName": "webViewUserAgentStringAdapter",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvp",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "Final",
+ "Lazy",
+ "SetterAccess",
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAAdapter",
+ "printedName": "KochavaCore.KVAAdapter",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAAdapter"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC29webViewUserAgentStringAdapter0A4Core10KVAAdapterCvg",
+ "moduleName": "KochavaTracker",
+ "implicit": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerDatapoints",
+ "mangledName": "$s14KochavaTracker20KVATrackerDatapointsC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerDatapoints",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "hasMissingDesignatedInitializers": true,
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAConfigureWithProtocol",
+ "printedName": "KVAConfigureWithProtocol",
+ "usr": "s:11KochavaCore24KVAConfigureWithProtocolP",
+ "mangledName": "$s11KochavaCore24KVAConfigureWithProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromWithInitializedObjectProtocol",
+ "printedName": "KVAFromWithInitializedObjectProtocol",
+ "usr": "s:11KochavaCore36KVAFromWithInitializedObjectProtocolP",
+ "mangledName": "$s11KochavaCore36KVAFromWithInitializedObjectProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAKeyable",
+ "printedName": "KVAKeyable",
+ "usr": "s:11KochavaCore10KVAKeyableP",
+ "mangledName": "$s11KochavaCore10KVAKeyableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAMutable",
+ "printedName": "KVAMutable",
+ "usr": "s:11KochavaCore10KVAMutableP",
+ "mangledName": "$s11KochavaCore10KVAMutableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAStartable",
+ "printedName": "KVAStartable",
+ "usr": "s:11KochavaCore12KVAStartableP",
+ "mangledName": "$s11KochavaCore12KVAStartableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "UIKit",
+ "printedName": "UIKit",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "DeviceCheck",
+ "printedName": "DeviceCheck",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker"
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVATrackerProduct",
+ "printedName": "KVATrackerProduct",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "shared",
+ "printedName": "shared",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAProduct",
+ "printedName": "KochavaCore.KVAProduct",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAProduct"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(cpy)shared",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC6shared0A4Core10KVAProductCvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "HasInitialValue",
+ "Final",
+ "HasStorage",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "isLet": true,
+ "hasStorage": true,
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAProduct",
+ "printedName": "KochavaCore.KVAProduct",
+ "usr": "c:@M@KochavaCore@objc(cs)KVAProduct"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(cm)shared",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC6shared0A4Core10KVAProductCvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "implicit": true,
+ "declAttributes": [
+ "Final",
+ "ObjC"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Var",
+ "name": "sharedInstance",
+ "printedName": "sharedInstance",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "s:14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvpZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvpZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final",
+ "AccessControl"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "AnyObject"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "s:14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvgZ",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC14sharedInstanceyXlvgZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "Final"
+ ],
+ "accessorKind": "get"
+ }
+ ]
+ },
+ {
+ "kind": "Constructor",
+ "name": "init",
+ "printedName": "init()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVATrackerProduct",
+ "printedName": "KochavaTracker.KVATrackerProduct",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct"
+ }
+ ],
+ "declKind": "Constructor",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct(im)init",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductCACycfc",
+ "moduleName": "KochavaTracker",
+ "overriding": true,
+ "implicit": true,
+ "objc_name": "init",
+ "declAttributes": [
+ "Dynamic",
+ "ObjC",
+ "Override"
+ ],
+ "init_kind": "Designated"
+ }
+ ],
+ "declKind": "Class",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVATrackerProduct",
+ "mangledName": "$s14KochavaTracker17KVATrackerProductC",
+ "moduleName": "KochavaTracker",
+ "objc_name": "KVATrackerProduct",
+ "declAttributes": [
+ "Final",
+ "AccessControl",
+ "ObjC",
+ "RawDocComment"
+ ],
+ "superclassUsr": "c:objc(cs)NSObject",
+ "inheritsConvenienceInitializers": true,
+ "superclassNames": [
+ "ObjectiveC.NSObject"
+ ],
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "KVASharedPropertyProvider",
+ "printedName": "KVASharedPropertyProvider",
+ "usr": "s:11KochavaCore25KVASharedPropertyProviderP",
+ "mangledName": "$s11KochavaCore25KVASharedPropertyProviderP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CVarArg",
+ "printedName": "CVarArg",
+ "usr": "s:s7CVarArgP",
+ "mangledName": "$ss7CVarArgP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObservingPublishing",
+ "printedName": "_KeyValueCodingAndObservingPublishing",
+ "usr": "s:10Foundation37_KeyValueCodingAndObservingPublishingP",
+ "mangledName": "$s10Foundation37_KeyValueCodingAndObservingPublishingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_KeyValueCodingAndObserving",
+ "printedName": "_KeyValueCodingAndObserving",
+ "usr": "s:10Foundation27_KeyValueCodingAndObservingP",
+ "mangledName": "$s10Foundation27_KeyValueCodingAndObservingP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ }
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventSender",
+ "printedName": "KVAEventSender",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "send",
+ "printedName": "send(event:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Void",
+ "printedName": "()"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEvent",
+ "printedName": "KochavaTracker.KVAEvent",
+ "usr": "c:@M@KochavaTracker@objc(cs)KVAEvent"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender(im)sendEvent:",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP4send5eventyAA0C0C_tF",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAEventSender>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "objc_name": "sendEvent:",
+ "declAttributes": [
+ "ObjC",
+ "RawDocComment"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender",
+ "mangledName": "$s14KochavaTracker14KVAEventSenderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "KVAEventSenderProvider",
+ "printedName": "KVAEventSenderProvider",
+ "children": [
+ {
+ "kind": "Var",
+ "name": "eventSender",
+ "printedName": "eventSender",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Var",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider(py)eventSender",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP05eventD0AA0cD0_pvp",
+ "moduleName": "KochavaTracker",
+ "protocolReq": true,
+ "declAttributes": [
+ "RawDocComment",
+ "ObjC"
+ ],
+ "accessors": [
+ {
+ "kind": "Accessor",
+ "name": "Get",
+ "printedName": "Get()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "KVAEventSender",
+ "printedName": "KochavaTracker.KVAEventSender",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSender"
+ }
+ ],
+ "declKind": "Accessor",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider(im)eventSender",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP05eventD0AA0cD0_pvg",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 where τ_0_0 : KochavaTracker.KVAEventSenderProvider>",
+ "sugared_genericSig": "",
+ "protocolReq": true,
+ "declAttributes": [
+ "ObjC"
+ ],
+ "reqNewWitnessTableEntry": true,
+ "accessorKind": "get"
+ }
+ ]
+ }
+ ],
+ "declKind": "Protocol",
+ "usr": "c:@M@KochavaTracker@objc(pl)KVAEventSenderProvider",
+ "mangledName": "$s14KochavaTracker22KVAEventSenderProviderP",
+ "moduleName": "KochavaTracker",
+ "genericSig": "<τ_0_0 : AnyObject>",
+ "sugared_genericSig": "",
+ "declAttributes": [
+ "AccessControl",
+ "ObjC"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "Foundation",
+ "printedName": "Foundation",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "Import",
+ "name": "KochavaCore",
+ "printedName": "KochavaCore",
+ "declKind": "Import",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "RawDocComment"
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "Date",
+ "printedName": "Date",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_sendDateString",
+ "printedName": "kva_sendDateString(fromRequestBodyDictionary:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "[Swift.AnyHashable : Any]?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Dictionary",
+ "printedName": "[Swift.AnyHashable : Any]",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "AnyHashable",
+ "printedName": "Swift.AnyHashable",
+ "usr": "s:s11AnyHashableV"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:SD"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:10Foundation4DateV14KochavaTrackerE08kva_sendB6String25fromRequestBodyDictionarySSSDys11AnyHashableVypGSg_tF",
+ "mangledName": "$s10Foundation4DateV14KochavaTrackerE08kva_sendB6String25fromRequestBodyDictionarySSSDys11AnyHashableVypGSg_tF",
+ "moduleName": "KochavaTracker",
+ "declAttributes": [
+ "AccessControl",
+ "RawDocComment"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "s:10Foundation4DateV",
+ "mangledName": "$s10Foundation4DateV",
+ "moduleName": "Foundation",
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "ReferenceConvertible",
+ "printedName": "ReferenceConvertible",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "ReferenceType",
+ "printedName": "ReferenceType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:10Foundation20ReferenceConvertibleP",
+ "mangledName": "$s10Foundation20ReferenceConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Comparable",
+ "printedName": "Comparable",
+ "usr": "s:SL",
+ "mangledName": "$sSL"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Strideable",
+ "printedName": "Strideable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "Stride",
+ "printedName": "Stride",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Double",
+ "printedName": "Swift.Double",
+ "usr": "s:Sd"
+ }
+ ]
+ }
+ ],
+ "usr": "s:Sx",
+ "mangledName": "$sSx"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomDebugStringConvertible",
+ "printedName": "CustomDebugStringConvertible",
+ "usr": "s:s28CustomDebugStringConvertibleP",
+ "mangledName": "$ss28CustomDebugStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomStringConvertible",
+ "printedName": "CustomStringConvertible",
+ "usr": "s:s23CustomStringConvertibleP",
+ "mangledName": "$ss23CustomStringConvertibleP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "CustomReflectable",
+ "printedName": "CustomReflectable",
+ "usr": "s:s17CustomReflectableP",
+ "mangledName": "$ss17CustomReflectableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSDate",
+ "printedName": "Foundation.NSDate",
+ "usr": "c:objc(cs)NSDate"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_CustomPlaygroundQuickLookable",
+ "printedName": "_CustomPlaygroundQuickLookable",
+ "usr": "s:s30_CustomPlaygroundQuickLookableP",
+ "mangledName": "$ss30_CustomPlaygroundQuickLookableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Decodable",
+ "printedName": "Decodable",
+ "usr": "s:Se",
+ "mangledName": "$sSe"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Encodable",
+ "printedName": "Encodable",
+ "usr": "s:SE",
+ "mangledName": "$sSE"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAAsForContextProtocol",
+ "printedName": "KVAAsForContextProtocol",
+ "usr": "s:11KochavaCore23KVAAsForContextProtocolP",
+ "mangledName": "$s11KochavaCore23KVAAsForContextProtocolP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "KVAFromProtocol",
+ "printedName": "KVAFromProtocol",
+ "usr": "s:11KochavaCore15KVAFromProtocolP",
+ "mangledName": "$s11KochavaCore15KVAFromProtocolP"
+ }
+ ]
+ },
+ {
+ "kind": "TypeDecl",
+ "name": "CoarseConversionValue",
+ "printedName": "CoarseConversionValue",
+ "children": [
+ {
+ "kind": "Function",
+ "name": "kva_identifier",
+ "printedName": "kva_identifier()",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So32SKAdNetworkCoarseConversionValuea14KochavaTrackerE14kva_identifierSSyF",
+ "mangledName": "$sSo32SKAdNetworkCoarseConversionValuea14KochavaTrackerE14kva_identifierSSyF",
+ "moduleName": "KochavaTracker",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "AccessControl",
+ "Available"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ },
+ {
+ "kind": "Function",
+ "name": "kva_from",
+ "printedName": "kva_from(_:)",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "CoarseConversionValue",
+ "printedName": "StoreKit.SKAdNetwork.CoarseConversionValue",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue"
+ }
+ ],
+ "usr": "s:Sq"
+ },
+ {
+ "kind": "TypeNominal",
+ "name": "Optional",
+ "printedName": "Any?",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "ProtocolComposition",
+ "printedName": "Any"
+ }
+ ],
+ "usr": "s:Sq"
+ }
+ ],
+ "declKind": "Func",
+ "usr": "s:So32SKAdNetworkCoarseConversionValuea14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "mangledName": "$sSo32SKAdNetworkCoarseConversionValuea14KochavaTrackerE8kva_fromyABSgypSgFZ",
+ "moduleName": "KochavaTracker",
+ "static": true,
+ "declAttributes": [
+ "AccessControl"
+ ],
+ "isFromExtension": true,
+ "funcSelfKind": "NonMutating"
+ }
+ ],
+ "declKind": "Struct",
+ "usr": "c:@T@SKAdNetworkCoarseConversionValue",
+ "moduleName": "StoreKit",
+ "intro_iOS": "16.0",
+ "declAttributes": [
+ "Available",
+ "Available",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "SynthesizedProtocol",
+ "Sendable"
+ ],
+ "isFromExtension": true,
+ "isExternal": true,
+ "conformances": [
+ {
+ "kind": "Conformance",
+ "name": "_ObjectiveCBridgeable",
+ "printedName": "_ObjectiveCBridgeable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "_ObjectiveCType",
+ "printedName": "_ObjectiveCType",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "NSString",
+ "printedName": "Foundation.NSString",
+ "usr": "c:objc(cs)NSString"
+ }
+ ]
+ }
+ ],
+ "usr": "s:s21_ObjectiveCBridgeableP",
+ "mangledName": "$ss21_ObjectiveCBridgeableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Hashable",
+ "printedName": "Hashable",
+ "usr": "s:SH",
+ "mangledName": "$sSH"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Equatable",
+ "printedName": "Equatable",
+ "usr": "s:SQ",
+ "mangledName": "$sSQ"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_SwiftNewtypeWrapper",
+ "printedName": "_SwiftNewtypeWrapper",
+ "usr": "s:s20_SwiftNewtypeWrapperP",
+ "mangledName": "$ss20_SwiftNewtypeWrapperP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "RawRepresentable",
+ "printedName": "RawRepresentable",
+ "children": [
+ {
+ "kind": "TypeWitness",
+ "name": "RawValue",
+ "printedName": "RawValue",
+ "children": [
+ {
+ "kind": "TypeNominal",
+ "name": "String",
+ "printedName": "Swift.String",
+ "usr": "s:SS"
+ }
+ ]
+ }
+ ],
+ "usr": "s:SY",
+ "mangledName": "$sSY"
+ },
+ {
+ "kind": "Conformance",
+ "name": "Sendable",
+ "printedName": "Sendable",
+ "usr": "s:s8SendableP",
+ "mangledName": "$ss8SendableP"
+ },
+ {
+ "kind": "Conformance",
+ "name": "_HasCustomAnyHashableRepresentation",
+ "printedName": "_HasCustomAnyHashableRepresentation",
+ "usr": "s:s35_HasCustomAnyHashableRepresentationP",
+ "mangledName": "$ss35_HasCustomAnyHashableRepresentationP"
+ }
+ ]
+ }
+ ],
+ "json_format_version": 8
+ },
+ "ConstValues": [
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 582,
+ "length": 13,
+ "value": "\"Achievement\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 725,
+ "length": 10,
+ "value": "\"Ad Click\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 927,
+ "length": 13,
+ "value": "\"Add to Cart\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1141,
+ "length": 18,
+ "value": "\"Add to Wish List\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1337,
+ "length": 9,
+ "value": "\"Ad View\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1537,
+ "length": 16,
+ "value": "\"Checkout Start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1692,
+ "length": 17,
+ "value": "\"Consent Granted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1855,
+ "length": 8,
+ "value": "\"Custom\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 1998,
+ "length": 11,
+ "value": "\"_Deeplink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2199,
+ "length": 16,
+ "value": "\"Level Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2403,
+ "length": 10,
+ "value": "\"Purchase\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2559,
+ "length": 13,
+ "value": "\"Push Opened\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2722,
+ "length": 15,
+ "value": "\"Push Received\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 2916,
+ "length": 8,
+ "value": "\"Rating\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3128,
+ "length": 23,
+ "value": "\"Registration Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3335,
+ "length": 8,
+ "value": "\"Search\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3478,
+ "length": 13,
+ "value": "\"Start Trial\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3630,
+ "length": 11,
+ "value": "\"Subscribe\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 3837,
+ "length": 19,
+ "value": "\"Tutorial Complete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 4034,
+ "length": 6,
+ "value": "\"View\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEventType.swift",
+ "kind": "StringLiteral",
+ "offset": 260,
+ "length": 12,
+ "value": "\"KochavaTracker.KVAEventType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 3731,
+ "length": 11,
+ "value": "\"app_clips\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8505,
+ "length": 34,
+ "value": "\"AppClips.installDeeplinkWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8570,
+ "length": 23,
+ "value": "\"install_deeplink_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 8658,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9473,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "StringLiteral",
+ "offset": 9843,
+ "length": 38,
+ "value": "\"120cf7c7-e26a-4ec2-b842-2596873ba169\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10145,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12195,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13407,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppClips.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13547,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1351,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 10837,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 16366,
+ "length": 10,
+ "value": "\"method_3\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 16999,
+ "length": 24,
+ "value": "\"AppleSearchAds.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 17054,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17106,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17193,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18725,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 19695,
+ "length": 52,
+ "value": "\"adapter.closure_collectAsynchronously - will start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 19839,
+ "length": 24,
+ "value": "\"method3AttributionBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 21741,
+ "length": 59,
+ "value": "\"adapter.closure_collectAsynchronously closure_didComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 22087,
+ "length": 102,
+ "value": "\"Collection duration for Apple Search Ads was \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 22180,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26101,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29459,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAds.swift",
+ "kind": "StringLiteral",
+ "offset": 288,
+ "length": 17,
+ "value": "\"KochavaTracker.KVAAppleSearchAds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3005,
+ "length": 16,
+ "value": "\"appleWatchBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3111,
+ "length": 11,
+ "value": "\"eventType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3150,
+ "length": 15,
+ "value": "\"eventTypeEnum\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3266,
+ "length": 14,
+ "value": "\"actionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3339,
+ "length": 20,
+ "value": "\"adCampaignIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3420,
+ "length": 22,
+ "value": "\"adCampaignNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3501,
+ "length": 20,
+ "value": "\"adDeviceTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3577,
+ "length": 17,
+ "value": "\"adGroupIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3652,
+ "length": 19,
+ "value": "\"adGroupNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3733,
+ "length": 23,
+ "value": "\"adMediationNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 3847,
+ "length": 27,
+ "value": "\"adNetworkConversionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4036,
+ "length": 21,
+ "value": "\"adNetworkNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4115,
+ "length": 19,
+ "value": "\"adPlacementString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4187,
+ "length": 14,
+ "value": "\"adSizeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4254,
+ "length": 14,
+ "value": "\"adTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4444,
+ "length": 20,
+ "value": "\"appleWatchIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4539,
+ "length": 36,
+ "value": "\"appStoreReceiptBase64EncodedString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4636,
+ "length": 22,
+ "value": "\"backgroundBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4722,
+ "length": 23,
+ "value": "\"checkoutAsGuestString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4805,
+ "length": 21,
+ "value": "\"completedBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4896,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 4951,
+ "length": 17,
+ "value": "\"contentIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5026,
+ "length": 19,
+ "value": "\"contentTypeString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5100,
+ "length": 16,
+ "value": "\"currencyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5172,
+ "length": 17,
+ "value": "\"customEventName\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5237,
+ "length": 23,
+ "value": "\"customEventNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5328,
+ "length": 6,
+ "value": "\"date\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5375,
+ "length": 12,
+ "value": "\"dateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5445,
+ "length": 19,
+ "value": "\"descriptionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5522,
+ "length": 19,
+ "value": "\"destinationString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5608,
+ "length": 28,
+ "value": "\"durationTimeIntervalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5700,
+ "length": 9,
+ "value": "\"endDate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5753,
+ "length": 15,
+ "value": "\"endDateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5920,
+ "length": 16,
+ "value": "\"infoDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 5999,
+ "length": 12,
+ "value": "\"infoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6071,
+ "length": 21,
+ "value": "\"itemAddedFromString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6144,
+ "length": 13,
+ "value": "\"levelString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6224,
+ "length": 28,
+ "value": "\"maxRatingValueDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6305,
+ "length": 12,
+ "value": "\"nameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6371,
+ "length": 15,
+ "value": "\"orderIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6439,
+ "length": 14,
+ "value": "\"originString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6511,
+ "length": 19,
+ "value": "\"payloadDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6601,
+ "length": 20,
+ "value": "\"priceDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6688,
+ "length": 19,
+ "value": "\"priceDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6770,
+ "length": 22,
+ "value": "\"quantityDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6858,
+ "length": 25,
+ "value": "\"ratingValueDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 6941,
+ "length": 17,
+ "value": "\"receiptIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7017,
+ "length": 20,
+ "value": "\"referralFromString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7102,
+ "length": 26,
+ "value": "\"registrationMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7182,
+ "length": 15,
+ "value": "\"resultsString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7249,
+ "length": 13,
+ "value": "\"scoreString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7319,
+ "length": 18,
+ "value": "\"searchTermString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7405,
+ "length": 26,
+ "value": "\"serviceLocallyBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7482,
+ "length": 14,
+ "value": "\"sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7557,
+ "length": 22,
+ "value": "\"spatialXDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7642,
+ "length": 22,
+ "value": "\"spatialYDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7727,
+ "length": 22,
+ "value": "\"spatialZDoubleNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7815,
+ "length": 11,
+ "value": "\"startDate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7872,
+ "length": 17,
+ "value": "\"startDateString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 7943,
+ "length": 15,
+ "value": "\"successString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8008,
+ "length": 11,
+ "value": "\"uriString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8072,
+ "length": 14,
+ "value": "\"userIdString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8141,
+ "length": 16,
+ "value": "\"userNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 8213,
+ "length": 17,
+ "value": "\"validatedString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43201,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43917,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47874,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvent.swift",
+ "kind": "BooleanLiteral",
+ "offset": 66658,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "StringLiteral",
+ "offset": 4541,
+ "length": 11,
+ "value": "\"adnetwork\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22940,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28211,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetwork.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28370,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 13961,
+ "length": 42,
+ "value": "\"AppleSearchAdsMethod3.attributionAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14086,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16424,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 17988,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Array",
+ "offset": 18071,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 18115,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18876,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19137,
+ "length": 63,
+ "value": "\"attributionAdapter.closure_collectAsynchronously - will start\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19304,
+ "length": 23,
+ "value": "\"retryWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19384,
+ "length": 18,
+ "value": "\"waitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 19796,
+ "length": 38,
+ "value": "\"e81a6d7f-aad8-484c-a0b7-0e69b353b6db\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21012,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21026,
+ "length": 45,
+ "value": "\"AppleAdServicesAttributionGetNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21109,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21132,
+ "length": 35,
+ "value": "\"apple_ad_services_attribution_get\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21205,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21216,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21262,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21351,
+ "length": 12,
+ "value": "\"bodyObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 21429,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 21495,
+ "length": 470,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Content-Type\"), (\"valueObject\", \"text\/plain\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22007,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22027,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22075,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22088,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22134,
+ "length": 25,
+ "value": "\"retryTimeIntervalSeries\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22226,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Array",
+ "offset": 22286,
+ "length": 123,
+ "value": "[\"apple_ad_services_attribution_get\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22451,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 22565,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 22613,
+ "length": 103,
+ "value": "[(\"class\", \"NSDictionary\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22810,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23870,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 23875,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 24033,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24950,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "IntegerLiteral",
+ "offset": 25038,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "Dictionary",
+ "offset": 25388,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 25445,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 25552,
+ "length": 22,
+ "value": "\"non_mock_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 26007,
+ "length": 70,
+ "value": "\"attributionAdapter.closure_collectAsynchronously closure_didComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 27199,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 27276,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27334,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27361,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27386,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "FloatLiteral",
+ "offset": 27430,
+ "length": 7,
+ "value": "86400.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 28015,
+ "length": 38,
+ "value": "\"d1d3b1c3-6b3f-4467-aab5-66eaeb03135c\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32465,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37331,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41441,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3.swift",
+ "kind": "StringLiteral",
+ "offset": 470,
+ "length": 24,
+ "value": "\"KochavaTracker.KVAAppleSearchAdsMethod3\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppleSearchAdsMethod3Attribution.swift",
+ "kind": "StringLiteral",
+ "offset": 530,
+ "length": 35,
+ "value": "\"KochavaTracker.KVAAppleSearchAdsMethod3Attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 3815,
+ "length": 23,
+ "value": "\"app_limit_ad_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 6964,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "StringLiteral",
+ "offset": 7032,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7086,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7111,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 7226,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppLimitAdTracking.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9823,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 8208,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 24322,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 24386,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24447,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 25237,
+ "length": 53,
+ "value": "\"AppTrackingTransparency.authorizationStatusWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 25321,
+ "length": 31,
+ "value": "\"att_authorization_status_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 25403,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26268,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 26757,
+ "length": 38,
+ "value": "\"120cf7c7-e26a-4ec2-b842-2596873ba169\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27046,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 27947,
+ "length": 58,
+ "value": "\"AppTrackingTransparency.requestTrackingAuthorizationTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "StringLiteral",
+ "offset": 28036,
+ "length": 36,
+ "value": "\"att_request_tracking_authorization\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 28123,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "Array",
+ "offset": 28227,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29161,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32089,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32128,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45881,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 55638,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAppTrackingTransparency.swift",
+ "kind": "BooleanLiteral",
+ "offset": 55778,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 5600,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 21386,
+ "length": 27,
+ "value": "\"Attribution.resultAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 21486,
+ "length": 134,
+ "value": "[\"TrackerConfig.retrieveTask\", \"Install.sendTask\", \"Attribution.resultRetrieveWaitTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21703,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22823,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 22989,
+ "length": 38,
+ "value": "\"b10d4939-511b-4fab-bd2f-0b1856f4453d\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24039,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24057,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24092,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24106,
+ "length": 30,
+ "value": "\"AttributionGetNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24150,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24173,
+ "length": 17,
+ "value": "\"get_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24204,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24227,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24245,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24310,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24346,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24656,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24697,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24717,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24741,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24754,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24776,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 24812,
+ "length": 57,
+ "value": "[\"get_attribution\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24887,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24900,
+ "length": 43,
+ "value": "\"https:\/\/control.kochava.com\/track\/kvquery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 24961,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25023,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25129,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25142,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25179,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25204,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25320,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25333,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25371,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25386,
+ "length": 17,
+ "value": "\"get_attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25485,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25498,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25542,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25557,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25643,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25656,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25699,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25724,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25848,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25861,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25903,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 25928,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26044,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26057,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26103,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26128,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26195,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26214,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26300,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26313,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26362,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26387,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26441,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26460,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26546,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 26573,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26611,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26624,
+ "length": 15,
+ "value": "\"attempt_count\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26669,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26694,
+ "length": 39,
+ "value": "\"NetTransaction.attemptCountIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26763,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26782,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26868,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 26895,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26933,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26946,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 26990,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27015,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27092,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27111,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27197,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27224,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27262,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27275,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27316,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27341,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27399,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27418,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27504,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27531,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27569,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27582,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27622,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27647,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27715,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27734,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27820,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 27847,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27885,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27898,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27936,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 27961,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28037,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28056,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28142,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28155,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28194,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28219,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28280,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28299,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28397,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28439,
+ "length": 7,
+ "value": "\"class\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28448,
+ "length": 22,
+ "value": "\"KVAAttributionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28488,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28545,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28556,
+ "length": 1,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28579,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28633,
+ "length": 13,
+ "value": "\"attribution\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28648,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28679,
+ "length": 7,
+ "value": "\"retry\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 28688,
+ "length": 2,
+ "value": "1"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28758,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28790,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 28808,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Dictionary",
+ "offset": 28844,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29336,
+ "length": 113,
+ "value": "\"Sending get_attribution at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29440,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29663,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 29789,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29945,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30118,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30203,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30309,
+ "length": 7,
+ "value": "\"retry\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 30338,
+ "length": 4,
+ "value": "30.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 30379,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30656,
+ "length": 86,
+ "value": "\"Attribution results not ready, retrying in \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 30733,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30890,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30942,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 31133,
+ "length": 36,
+ "value": "\"Attribution.resultRetrieveWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 31200,
+ "length": 34,
+ "value": "\"attribution_result_retrieve_wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 31285,
+ "length": 84,
+ "value": "[\"Install.sendTask\", \"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31538,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31812,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31852,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "IntegerLiteral",
+ "offset": 33282,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "FloatLiteral",
+ "offset": 33338,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 33748,
+ "length": 43,
+ "value": "\"resultRetrieveWaitTask - starting to wait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 33859,
+ "length": 29,
+ "value": "\"attributionWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34016,
+ "length": 27,
+ "value": "\"remainingWaitTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34383,
+ "length": 85,
+ "value": "\"Requesting attribution results in \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34459,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 34719,
+ "length": 38,
+ "value": "\"8e3747ad-7d28-49e3-9b5f-79add1caaf16\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35842,
+ "length": 32,
+ "value": "\"Attribution.resultRetrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35905,
+ "length": 29,
+ "value": "\"attribution_result_retrieve\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 35999,
+ "length": 36,
+ "value": "\"Attribution.resultRetrieveWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 36049,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 36081,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "Array",
+ "offset": 36262,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36483,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36716,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36756,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37249,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 37394,
+ "length": 38,
+ "value": "\"4153b38f-dffd-4934-b61f-9c390d33527a\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "StringLiteral",
+ "offset": 37534,
+ "length": 38,
+ "value": "\"e66e97ed-d69a-4939-89cc-c7c245759dc1\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41913,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44558,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttribution.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45694,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttributionResult.swift",
+ "kind": "BooleanLiteral",
+ "offset": 1340,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAttributionResult.swift",
+ "kind": "StringLiteral",
+ "offset": 266,
+ "length": 20,
+ "value": "\"KochavaTracker.KVAAttributionResult\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "StringLiteral",
+ "offset": 4847,
+ "length": 20,
+ "value": "\"custom_identifiers\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "StringLiteral",
+ "offset": 11821,
+ "length": 27,
+ "value": "\"CustomIdentifiers.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14494,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVACustomIdentifiers.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14958,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17337,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 8793,
+ "length": 11,
+ "value": "\"deeplinks\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30172,
+ "length": 19,
+ "value": "\"Deeplinks.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30222,
+ "length": 11,
+ "value": "\"deeplinks\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30267,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30695,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30713,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30748,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30762,
+ "length": 29,
+ "value": "\"DeeplinkClickNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30805,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30828,
+ "length": 16,
+ "value": "\"deeplink_click\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30858,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30869,
+ "length": 20,
+ "value": "\"serverUnrestricted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30903,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30926,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30944,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30959,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 30977,
+ "length": 40,
+ "value": "\"transactionProcessingWaitEstablishBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31019,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31037,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31078,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31098,
+ "length": 5,
+ "value": "\"GET\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31121,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31134,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31156,
+ "length": 25,
+ "value": "\"retryTimeIntervalSeries\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31221,
+ "length": 29,
+ "value": "\"repeatFinalTimeIntervalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31252,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31279,
+ "length": 19,
+ "value": "\"timeIntervalArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 31300,
+ "length": 11,
+ "value": "[3.0, 10.0]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 31347,
+ "length": 21,
+ "value": "\"urlDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 31386,
+ "length": 634,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"url\"), (\"valueSourceIdentifier\", \"Local.urlString\")], [(\"keyString\", \"type\"), (\"valueObject\", \"kochava_device_id\")], [(\"keyString\", \"device_id\"), (\"valueSourceIdentifier\", \"DeviceId.stringAdapter\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32038,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 32074,
+ "length": 56,
+ "value": "[\"deeplink_click\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32148,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32161,
+ "length": 7,
+ "value": "\"{url}\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32196,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 32220,
+ "length": 49,
+ "value": "[(\"class\", \"NSNull\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32283,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 32319,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32574,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32581,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32883,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 32890,
+ "length": 48,
+ "value": "\"closure_clickNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33064,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 33071,
+ "length": 33,
+ "value": "\"clickNetTransaction not enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33281,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37053,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37067,
+ "length": 31,
+ "value": "\"DeeplinkProcessNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37112,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37135,
+ "length": 11,
+ "value": "\"smartlink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37160,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37171,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37193,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37234,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 37276,
+ "length": 450,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37744,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37764,
+ "length": 5,
+ "value": "\"GET\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37787,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Array",
+ "offset": 37823,
+ "length": 51,
+ "value": "[\"smartlink\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37892,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37905,
+ "length": 33,
+ "value": "\"https:\/\/smart.link\/v1\/links-sdk\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 37966,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 37990,
+ "length": 54,
+ "value": "[(\"class\", \"KVADeeplink\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38058,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "Dictionary",
+ "offset": 38094,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38641,
+ "length": 19,
+ "value": "\"deeplinkURLString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 38811,
+ "length": 6,
+ "value": "\"path\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45878,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 46839,
+ "length": 52,
+ "value": "\"Deeplinks.augmentDeferredPrefetchDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "StringLiteral",
+ "offset": 46922,
+ "length": 24,
+ "value": "\"deeplinks_augmentation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47606,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeeplinks.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49356,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 4390,
+ "length": 11,
+ "value": "\"device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 24193,
+ "length": 18,
+ "value": "\"DeviceId.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24234,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24271,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 24316,
+ "length": 16,
+ "value": "\"deviceAppGroup\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 25284,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "StringLiteral",
+ "offset": 25339,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25392,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28894,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34428,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35479,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVADeviceId.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35525,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 3665,
+ "length": 8,
+ "value": "\"events\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9071,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9089,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9124,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9138,
+ "length": 21,
+ "value": "\"EventNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9173,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9196,
+ "length": 7,
+ "value": "\"event\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9217,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9240,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9258,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9273,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9291,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9332,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9352,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9376,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 9389,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9411,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 9447,
+ "length": 84,
+ "value": "[\"event_by_name\", \"event\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9549,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9562,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9620,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9682,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9788,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9801,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9838,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9863,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9979,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 9992,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10030,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10045,
+ "length": 7,
+ "value": "\"event\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10134,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10147,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10191,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10206,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10292,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10305,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10348,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10373,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10497,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10510,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10552,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10577,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10693,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10706,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10752,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10777,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10844,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 10863,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10949,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 10962,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11011,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11036,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11090,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11109,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11195,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11222,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11260,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11273,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11317,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11342,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11471,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11498,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11536,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11549,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11590,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11615,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11725,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 11752,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11790,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11803,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11843,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11868,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 11988,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12015,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12053,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12066,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12104,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12129,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12257,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12284,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12322,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12335,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12384,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12409,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12544,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12571,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12609,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12622,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12672,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12697,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12827,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 12854,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12892,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12905,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12954,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 12979,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13115,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13142,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13180,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13193,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13231,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13256,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13393,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13420,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13458,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13471,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13509,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13534,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13674,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13701,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13739,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13752,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13790,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13815,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 13954,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 13981,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14019,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14032,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14075,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14100,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14235,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14262,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14300,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14313,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14361,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14386,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14526,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14553,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14591,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14604,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14648,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14673,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14799,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 14826,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14864,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14877,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14919,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 14944,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15068,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15095,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15133,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15146,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15184,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15209,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15336,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15363,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15401,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15414,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15459,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15484,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15618,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15645,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15683,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15696,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15742,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15767,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15894,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 15921,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15959,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 15972,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16016,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16041,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16246,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16287,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16312,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16393,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16409,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16495,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16522,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16560,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16573,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16638,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16770,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 16797,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16835,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16848,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16886,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 16911,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17049,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17076,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17114,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17127,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17171,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17196,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17322,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17349,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17387,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17400,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17445,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17470,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17597,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 17624,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17662,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17675,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17728,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17753,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17888,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17927,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 17952,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18013,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18118,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18145,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18183,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18196,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18253,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18278,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18341,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18360,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18446,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18473,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18511,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18524,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18559,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18584,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18701,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18728,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18766,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18779,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18818,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18843,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 18970,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "Array",
+ "offset": 18997,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19035,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19048,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19083,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19108,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19172,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19191,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19459,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19466,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19929,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 19936,
+ "length": 14,
+ "value": "\"event is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20118,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "StringLiteral",
+ "offset": 20125,
+ "length": 47,
+ "value": "\"closure_sendNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23372,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAEvents.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23558,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33280,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "StringLiteral",
+ "offset": 41019,
+ "length": 51,
+ "value": "\"AdNetworkConversion.extensionIntervalMaximumTimer\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41102,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41629,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41840,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42034,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42094,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42995,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversion.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57614,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 3993,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15395,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15413,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15448,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15462,
+ "length": 28,
+ "value": "\"IdentityLinkNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15504,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15527,
+ "length": 14,
+ "value": "\"identityLink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15555,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15578,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15596,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15611,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15629,
+ "length": 40,
+ "value": "\"transactionProcessingWaitEstablishBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15671,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15689,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15730,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15750,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15774,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15787,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15809,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 15845,
+ "length": 54,
+ "value": "[\"identityLink\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15917,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15930,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 15988,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16050,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16156,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16169,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16206,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16231,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16347,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16360,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16398,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16413,
+ "length": 14,
+ "value": "\"identityLink\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16509,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16522,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16566,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16581,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16667,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16680,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16719,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16744,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16805,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16824,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16910,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16923,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16966,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 16991,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17115,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17128,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17170,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17195,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17311,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17324,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17370,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17395,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17462,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17481,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17567,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17580,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17629,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17654,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17708,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17727,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17813,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 17840,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17878,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17891,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17932,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 17957,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18067,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18094,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18132,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18145,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18185,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18210,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18330,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18357,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18395,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18408,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18446,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18471,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18599,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "Array",
+ "offset": 18626,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18664,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18677,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18722,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 18747,
+ "length": 42,
+ "value": "\"Local.identityLinkRegistrationDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19053,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19060,
+ "length": 13,
+ "value": "\"self is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19304,
+ "length": 42,
+ "value": "\"Local.identityLinkRegistrationDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19743,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19750,
+ "length": 23,
+ "value": "\"firstKeyString is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19949,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 19956,
+ "length": 51,
+ "value": "\"closure_registerNetTransaction_enabledBool is nil\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 20427,
+ "length": 44,
+ "value": "\"IdentityLink.registrationDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "StringLiteral",
+ "offset": 20502,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20551,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23681,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAIdentityLink.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23867,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 8098,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 25172,
+ "length": 31,
+ "value": "\"Install.lastDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 25603,
+ "length": 748,
+ "value": "[(\"DeviceId.stringAdapter\", \"kochava_device_id\"), (\"Tracker.deviceIdStringAdapter\", \"kochava_device_id\"), (\"TrackerGeneral.appGUIDStringAdapter\", \"kochava_app_id\"), (\"Tracker.appGUIDStringAdapter\", \"kochava_app_id\"), (\"KochavaTracker.standardVersionInfoString\", \"sdk_version\"), (\"TrackerDataPoints.appMainBundleVersionStringAdapter\", \"app_version\"), (\"Tracker.appMainBundleVersionStringAdapter\", \"app_version\"), (\"Install.sendDidCompleteDateUnixTime\", \"time\"), (\"TrackerDataPoints.osVersionStringAdapter\", \"os_version\"), (\"Tracker.osVersionStringAdapter\", \"os_version\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 26509,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 26874,
+ "length": 7,
+ "value": "\"count\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28070,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28088,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28123,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28137,
+ "length": 23,
+ "value": "\"InstallNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28174,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28197,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28220,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28243,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28261,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28326,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28657,
+ "length": 23,
+ "value": "\"updateWatchValuesBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28682,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28700,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28741,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28761,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28785,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28798,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28820,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 28856,
+ "length": 49,
+ "value": "[\"install\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28923,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28936,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 28994,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29056,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29162,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29175,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29212,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29237,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29353,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29366,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29404,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29419,
+ "length": 9,
+ "value": "\"install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29510,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29523,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29567,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29582,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29668,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29681,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29724,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29749,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29873,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29886,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29928,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 29953,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30069,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30082,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30128,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30153,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30220,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30239,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30325,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30338,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30387,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30412,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30466,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30485,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30571,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30584,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30620,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30645,
+ "length": 27,
+ "value": "\"CustomIdentifiers.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30702,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30721,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30807,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30820,
+ "length": 11,
+ "value": "\"extension\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30861,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 30886,
+ "length": 32,
+ "value": "\"System.appExtensionBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31000,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31027,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31065,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31078,
+ "length": 18,
+ "value": "\"apple_search_ads\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31126,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31151,
+ "length": 24,
+ "value": "\"AppleSearchAds.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31258,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31285,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31323,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31336,
+ "length": 19,
+ "value": "\"ad_services_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31385,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31410,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31539,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31566,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31604,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31617,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31671,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31696,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31772,
+ "length": 31,
+ "value": "\"valueSourcePropertyNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31805,
+ "length": 33,
+ "value": "\"startDate.unixTimeDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31921,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 31948,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31986,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 31999,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32043,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32068,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32145,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32164,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32250,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32277,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32315,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32328,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32369,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32394,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32452,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32471,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32557,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32584,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32622,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32635,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32673,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32698,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32774,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32793,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32879,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 32906,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32944,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32957,
+ "length": 6,
+ "value": "\"idct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 32993,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33018,
+ "length": 35,
+ "value": "\"TrackerDataPoints.idctDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33083,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33102,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33188,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33215,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33253,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33266,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33302,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33327,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33394,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33413,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33499,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33526,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33564,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33577,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33638,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33705,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 33724,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33810,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 33837,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33888,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33930,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 33955,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34027,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34046,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34132,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34159,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34197,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34210,
+ "length": 9,
+ "value": "\"receipt\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34249,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34274,
+ "length": 46,
+ "value": "\"TrackerDataPoints.appStoreReceiptDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34402,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34429,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34467,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34480,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34519,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34544,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34682,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 34709,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34747,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34760,
+ "length": 15,
+ "value": "\"identity_link\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34805,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34830,
+ "length": 44,
+ "value": "\"IdentityLink.registrationDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 34904,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34923,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35009,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35036,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35074,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35087,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35125,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35150,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35287,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35314,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35352,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35365,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35415,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35440,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35518,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35537,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35623,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35650,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35688,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35701,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35739,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35764,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35904,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 35931,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35969,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 35982,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36020,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36045,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36184,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36211,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36249,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36262,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36311,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36336,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36420,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36439,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36525,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36552,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36590,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36603,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36652,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36677,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36760,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36779,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36865,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 36892,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36930,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36943,
+ "length": 10,
+ "value": "\"app_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 36983,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37008,
+ "length": 57,
+ "value": "\"TrackerDataPoints.appMainBundleDisplayNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37147,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37174,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37212,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37225,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37268,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37293,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37428,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37455,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37493,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37506,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37554,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37579,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37719,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 37746,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37784,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37797,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37841,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37866,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 37992,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38019,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38057,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38070,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38112,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38137,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38261,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38288,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38326,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38339,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38379,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38404,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38489,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38508,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38594,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38621,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38659,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38672,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38722,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38747,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38814,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38833,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38919,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 38946,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38984,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 38997,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39050,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39075,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39157,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39176,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39262,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39289,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39327,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39340,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39382,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39407,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39529,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39556,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39594,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39607,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39645,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39670,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39745,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39764,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39850,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 39877,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39915,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39928,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39973,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 39998,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40080,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40099,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40185,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40212,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40250,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40263,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40309,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40334,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40409,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40428,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40514,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40541,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40579,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40592,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40636,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40661,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40788,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 40815,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40853,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40866,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40907,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 40932,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41013,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41066,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41082,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41246,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41286,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41311,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41391,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41410,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41496,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41523,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41561,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41574,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41612,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41637,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41723,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41742,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41828,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 41855,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41893,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41906,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41950,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 41975,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42049,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42068,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42154,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 42181,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42219,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42232,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42277,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42302,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42377,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42396,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42482,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 42509,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42547,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42560,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42613,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42638,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42708,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42727,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42813,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42826,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42865,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42890,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 42951,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 42970,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43056,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43083,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43121,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43134,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43191,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43216,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43279,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43298,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43384,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43397,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43433,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43458,
+ "length": 19,
+ "value": "\"Deeplinks.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43507,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43526,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43612,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43639,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43677,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43690,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43725,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43750,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43815,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43834,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43920,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 43947,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43985,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 43998,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44037,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44062,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44137,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44156,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44242,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44269,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44307,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44320,
+ "length": 18,
+ "value": "\"sdk_generated_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44368,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44393,
+ "length": 54,
+ "value": "\"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44529,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44556,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44594,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44607,
+ "length": 11,
+ "value": "\"system_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44648,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44673,
+ "length": 49,
+ "value": "\"TrackerDataPoints.webViewUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44804,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 44831,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44869,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44882,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44917,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 44942,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45006,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45025,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45123,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45155,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45173,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Dictionary",
+ "offset": 45209,
+ "length": 70,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45700,
+ "length": 94,
+ "value": "\"Sending install at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "IntegerLiteral",
+ "offset": 45783,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 45785,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46257,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46306,
+ "length": 14,
+ "value": "\"install_send\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46385,
+ "length": 53,
+ "value": "\"AppTrackingTransparency.authorizationStatusWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46452,
+ "length": 58,
+ "value": "\"AppTrackingTransparency.requestTrackingAuthorizationTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46524,
+ "length": 34,
+ "value": "\"AppClips.installDeeplinkWaitTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 46572,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "Array",
+ "offset": 46835,
+ "length": 52,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47056,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48665,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48712,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "FloatLiteral",
+ "offset": 48785,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 50913,
+ "length": 30,
+ "value": "\"Networking.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 50965,
+ "length": 27,
+ "value": "\"Install.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "StringLiteral",
+ "offset": 51023,
+ "length": 24,
+ "value": "\"install_watched_values\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57920,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 61430,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAInstall.swift",
+ "kind": "BooleanLiteral",
+ "offset": 76339,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 5077,
+ "length": 20,
+ "value": "\"push_notifications\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 15885,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 15968,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16038,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16063,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 16107,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 16472,
+ "length": 38,
+ "value": "\"c35a4110-99b0-494f-a1f5-d8d5fe4b0bc4\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17290,
+ "length": 20,
+ "value": "\"CFBundleIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17376,
+ "length": 26,
+ "value": "\"com.apple.dt.xctest.tool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 17871,
+ "length": 16,
+ "value": "\"not_determined\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18039,
+ "length": 8,
+ "value": "\"denied\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18203,
+ "length": 12,
+ "value": "\"authorized\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 18552,
+ "length": 13,
+ "value": "\"provisional\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 20926,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 20997,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21054,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21079,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 21123,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21629,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21843,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22130,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22699,
+ "length": 12,
+ "value": "\"authorized\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22812,
+ "length": 13,
+ "value": "\"provisional\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 22926,
+ "length": 16,
+ "value": "\"not_determined\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 23770,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 23842,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23902,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23927,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "FloatLiteral",
+ "offset": 23971,
+ "length": 3,
+ "value": "1.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 24127,
+ "length": 38,
+ "value": "\"b5fd3303-ad12-4700-82f7-ca1e1d02a686\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25158,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25176,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25211,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25225,
+ "length": 41,
+ "value": "\"PushNotificationsTokenAddNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25280,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25303,
+ "length": 16,
+ "value": "\"push_token_add\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25333,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25356,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25374,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25389,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25407,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25448,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25468,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25492,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25505,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25527,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 25563,
+ "length": 56,
+ "value": "[\"push_token_add\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25637,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25650,
+ "length": 41,
+ "value": "\"https:\/\/token.api.kochava.com\/token\/add\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25709,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25771,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25877,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25890,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25927,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 25952,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26068,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26081,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26125,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26140,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26226,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26239,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26282,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26307,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26431,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26444,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26486,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26511,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26627,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26640,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26686,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26711,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26778,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26797,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26883,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26896,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26945,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 26970,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27024,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27043,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27129,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27156,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27194,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27207,
+ "length": 7,
+ "value": "\"token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27244,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27269,
+ "length": 28,
+ "value": "\"Local.deviceTokenHexString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27379,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27406,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27444,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27457,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27497,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27522,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27654,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27681,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27719,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27732,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27770,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27795,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27933,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 27960,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 27998,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28011,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28052,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28077,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28187,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28214,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28265,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28305,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28330,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28450,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28477,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28515,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28528,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28594,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28619,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28753,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 28780,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28818,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28831,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28884,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 28909,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29031,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 29058,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29096,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29109,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29165,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29190,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29313,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29326,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29365,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29390,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29451,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29470,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29795,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29813,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29848,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29862,
+ "length": 44,
+ "value": "\"PushNotificationsTokenRemoveNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29920,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29943,
+ "length": 19,
+ "value": "\"push_token_remove\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 29976,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29999,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30017,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30032,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30050,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30091,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30111,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30135,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30148,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30170,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 30206,
+ "length": 59,
+ "value": "[\"push_token_remove\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30283,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30296,
+ "length": 44,
+ "value": "\"https:\/\/token.api.kochava.com\/token\/remove\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30358,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30420,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30526,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30539,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30576,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30601,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30717,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30730,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30774,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30789,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30875,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30888,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30931,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 30956,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31080,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31093,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31135,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31160,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31276,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31289,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31335,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31360,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31427,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31446,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31532,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31545,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31594,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31619,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31673,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31692,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31778,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 31805,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31843,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31856,
+ "length": 7,
+ "value": "\"token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31893,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 31918,
+ "length": 28,
+ "value": "\"Local.deviceTokenHexString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32028,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32055,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32093,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32106,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32146,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32171,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32303,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32330,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32368,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32381,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32419,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32444,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32582,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32609,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32647,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32660,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32701,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32726,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32836,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 32863,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32901,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32914,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32954,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 32979,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33099,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33126,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33164,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33177,
+ "length": 36,
+ "value": "\"notifications_authorization_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33243,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33268,
+ "length": 52,
+ "value": "\"PushNotifications.authorizationStatusStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33402,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33429,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33467,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33480,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33533,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33558,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33680,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Array",
+ "offset": 33707,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33745,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33758,
+ "length": 26,
+ "value": "\"notifications_registered\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33814,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33839,
+ "length": 41,
+ "value": "\"PushNotifications.registeredBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33962,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 33975,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34014,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34039,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34100,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34119,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34638,
+ "length": 37,
+ "value": "\"PushNotifications.watchedValuesTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 34706,
+ "length": 35,
+ "value": "\"push_notifications_watched_values\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 35490,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "Dictionary",
+ "offset": 45029,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45052,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45127,
+ "length": 9,
+ "value": "\"KVAPE-U\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 45319,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45512,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46114,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "StringLiteral",
+ "offset": 46212,
+ "length": 37,
+ "value": "\"PushNotifications.enabledBoolNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotifications.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46489,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversionEvent.swift",
+ "kind": "StringLiteral",
+ "offset": 311,
+ "length": 27,
+ "value": "\"KochavaTracker.KVAAdNetworkConversionEvent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAAdNetworkConversionLockWindow.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8740,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 4179,
+ "length": 9,
+ "value": "\"general\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 18272,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 18340,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18390,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19138,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19152,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19187,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19210,
+ "length": 7,
+ "value": "\"basic\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19231,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19242,
+ "length": 8,
+ "value": "\"server\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19264,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19329,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19365,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 19920,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "Dictionary",
+ "offset": 19943,
+ "length": 728,
+ "value": "[(\"headerDictionaryFormat\", [(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"User-Agent\"), (\"valueSourceIdentifier\", \"TrackerDataPoints.userAgentStringAdapter\")]])])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20685,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20727,
+ "length": 7,
+ "value": "\"class\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20736,
+ "length": 14,
+ "value": "\"NSDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20768,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "Dictionary",
+ "offset": 20803,
+ "length": 54,
+ "value": "[(\"success\", \"1\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 20875,
+ "length": 21,
+ "value": "\"httpStatusCodeLocal\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "IntegerLiteral",
+ "offset": 20898,
+ "length": 3,
+ "value": "200"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21115,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 21431,
+ "length": 52,
+ "value": "\"TrackerGeneral.netTransactionDidSucceedBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21606,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 21675,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21787,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 22294,
+ "length": 41,
+ "value": "\"TrackerGeneral.partnerNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 22366,
+ "length": 14,
+ "value": "\"partner_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22414,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23235,
+ "length": 45,
+ "value": "\"TrackerGeneral.startSequenceDidCompleteTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23311,
+ "length": 16,
+ "value": "\"start_sequence\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23392,
+ "length": 32,
+ "value": "\"Attribution.resultRetrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23438,
+ "length": 25,
+ "value": "\"TrackerUpdates.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23477,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 23509,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24258,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24340,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24378,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30297,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30557,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30685,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32330,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerGeneral.swift",
+ "kind": "StringLiteral",
+ "offset": 32589,
+ "length": 41,
+ "value": "\"TrackerGeneral.startSequenceDidComplete\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVAPushNotificationsToken.swift",
+ "kind": "StringLiteral",
+ "offset": 280,
+ "length": 25,
+ "value": "\"KochavaTracker.KVAPushNotificationsToken\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "StringLiteral",
+ "offset": 29702,
+ "length": 22,
+ "value": "\"KVASession.didMutate\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 34486,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 34653,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36077,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 36238,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 39830,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40846,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "FloatLiteral",
+ "offset": 41464,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASession.swift",
+ "kind": "StringLiteral",
+ "offset": 262,
+ "length": 10,
+ "value": "\"KochavaTracker.KVASession\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 5162,
+ "length": 10,
+ "value": "\"sessions\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 25412,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 25490,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25538,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25783,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 26161,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 26238,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26280,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "FloatLiteral",
+ "offset": 26849,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27611,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27629,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27664,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27678,
+ "length": 28,
+ "value": "\"SessionBeginNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27720,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27743,
+ "length": 15,
+ "value": "\"session_begin\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27772,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27795,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27813,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27828,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27846,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27887,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27907,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27931,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27944,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 27966,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 28002,
+ "length": 86,
+ "value": "[\"session_begin\", \"session\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28106,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28119,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28177,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28239,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28345,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28358,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28395,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28420,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28536,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28549,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28587,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28602,
+ "length": 9,
+ "value": "\"session\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28693,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28706,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28750,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28765,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28851,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28864,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28907,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 28932,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29056,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29069,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29111,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29136,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29265,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29311,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29336,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29403,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29422,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29508,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29521,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29570,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29595,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29649,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29668,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29754,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 29781,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29819,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29832,
+ "length": 8,
+ "value": "\"source\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29870,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29895,
+ "length": 20,
+ "value": "\"Local.sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 29997,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30024,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30062,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30075,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30116,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30141,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30251,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30278,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30316,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30329,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30369,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30394,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30514,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30541,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30579,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30592,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30630,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "IntegerLiteral",
+ "offset": 30645,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30728,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 30755,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30793,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30806,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30855,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 30880,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31015,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31042,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31080,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31093,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31143,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31168,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31298,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31325,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31363,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31376,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31425,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31450,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31586,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31613,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31651,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31664,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31702,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31727,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31864,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 31891,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31929,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31942,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 31980,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32005,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32145,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32172,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32210,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32223,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32261,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32286,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32425,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32452,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32490,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32503,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32546,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32571,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32706,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 32733,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32771,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32784,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32832,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32857,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 32997,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33024,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33062,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33075,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33119,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33144,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33270,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33297,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33335,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33348,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33390,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33415,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33539,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33566,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33604,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33617,
+ "length": 7,
+ "value": "\"state\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33654,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33669,
+ "length": 8,
+ "value": "\"resume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33759,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 33786,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33824,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33837,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33875,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 33900,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34027,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34054,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34092,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34105,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34150,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34175,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34309,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34336,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34374,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34387,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34433,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34458,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34585,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34612,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34650,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34663,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34707,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34732,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34859,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 34886,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34924,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34937,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 34978,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35003,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35084,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35100,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35186,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35213,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35251,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35264,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35304,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35329,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35461,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35488,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35526,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35539,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35577,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35602,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35740,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 35767,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35805,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35818,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35862,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 35887,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36013,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36040,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36078,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36091,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36136,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36161,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36288,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36315,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36353,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36366,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36419,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36444,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36566,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36593,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36631,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36644,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36679,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36704,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36821,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 36848,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36886,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36899,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36938,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 36963,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37090,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37103,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37142,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37167,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37228,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37247,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37333,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 37360,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37398,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37411,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37468,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37493,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37556,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37575,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37661,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 37688,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37726,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37739,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37774,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37799,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 37863,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37882,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38215,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38233,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38268,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38282,
+ "length": 26,
+ "value": "\"SessionEndNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38322,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38345,
+ "length": 13,
+ "value": "\"session_end\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38372,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38395,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38413,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38428,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38446,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38487,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38507,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38531,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38544,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38566,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 38602,
+ "length": 84,
+ "value": "[\"session_end\", \"session\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38704,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38717,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38775,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38837,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38943,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38956,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 38993,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39018,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39134,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39147,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39185,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39200,
+ "length": 9,
+ "value": "\"session\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39291,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39304,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39348,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39363,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39449,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39462,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39505,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39530,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39654,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39667,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39709,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39734,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39850,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39863,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39909,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 39934,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40001,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40020,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40106,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40119,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40168,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40193,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40247,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 40266,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40352,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40379,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40417,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40430,
+ "length": 8,
+ "value": "\"source\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40468,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40493,
+ "length": 20,
+ "value": "\"Local.sourceString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40595,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40622,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40660,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40673,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40714,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40739,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40849,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 40876,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40914,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40927,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40967,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 40992,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41112,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41139,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41177,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41190,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41228,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41253,
+ "length": 22,
+ "value": "\"Local.upTimeInterval\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41357,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41384,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41422,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41435,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41484,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41509,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41644,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41671,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41709,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41722,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41772,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41797,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41927,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 41954,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 41992,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42005,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42054,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42079,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42215,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42242,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42280,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42293,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42331,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42356,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42493,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42520,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42558,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42571,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42609,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42634,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42774,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 42801,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42839,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42852,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42890,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 42915,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43054,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43081,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43119,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43132,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43175,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43200,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43335,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43362,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43400,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43413,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43461,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43486,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43626,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43653,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43691,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43704,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43748,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43773,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43899,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 43926,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43964,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 43977,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44019,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44044,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44168,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44195,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44233,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44246,
+ "length": 7,
+ "value": "\"state\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44283,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44298,
+ "length": 7,
+ "value": "\"pause\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44387,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44414,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44452,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44465,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44503,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44528,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44655,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44682,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44720,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44733,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44778,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44803,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 44937,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 44964,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45002,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45015,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45061,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45086,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45213,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45240,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45278,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45291,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45335,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45360,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45487,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45514,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45552,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45565,
+ "length": 11,
+ "value": "\"cpu_usage\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45606,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45631,
+ "length": 51,
+ "value": "\"TrackerDataPoints.cpuUsagePercentageNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45712,
+ "length": 14,
+ "value": "\"disabledBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45728,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45814,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 45841,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45879,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45892,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45932,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 45957,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46089,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46116,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46154,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46167,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46205,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46230,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46368,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46395,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46433,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46446,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46490,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46515,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46641,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46668,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46706,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46719,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46764,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46789,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46916,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 46943,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46981,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 46994,
+ "length": 23,
+ "value": "\"notifications_enabled\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47047,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47072,
+ "length": 40,
+ "value": "\"PushNotifications.enabledOSBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47194,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 47221,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47259,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47272,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47307,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47332,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47449,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 47476,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47514,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47527,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47566,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47591,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47718,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47731,
+ "length": 6,
+ "value": "\"data\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47767,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47792,
+ "length": 24,
+ "value": "\"Local.reportDictionary\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47898,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47911,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47950,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 47975,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48036,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48055,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48141,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 48168,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48206,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48219,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48276,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48301,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48364,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48383,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48469,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "Array",
+ "offset": 48496,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48534,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48547,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48582,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48607,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "StringLiteral",
+ "offset": 48671,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48690,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56787,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVASessions.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69106,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47976,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48205,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48239,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 48835,
+ "length": 3,
+ "value": "0.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48877,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48929,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49122,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49156,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 50551,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50834,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50989,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 51095,
+ "length": 3,
+ "value": "5.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54382,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 54389,
+ "length": 64,
+ "value": "\"privacy denies event name '\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 54451,
+ "length": 3,
+ "value": "\"'\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56462,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 56469,
+ "length": 73,
+ "value": "\"privacy denies identity link name '\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 56540,
+ "length": 3,
+ "value": "\"'\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 60725,
+ "length": 11,
+ "value": "\"send_date\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67508,
+ "length": 17,
+ "value": "\"Tracker.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67556,
+ "length": 9,
+ "value": "\"tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67639,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67717,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 67750,
+ "length": 9,
+ "value": "\"Tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67804,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "FloatLiteral",
+ "offset": 67849,
+ "length": 4,
+ "value": "0.25"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67901,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68508,
+ "length": 31,
+ "value": "\"KVATracker.mutatorTokenString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68793,
+ "length": 35,
+ "value": "\"Tracker.sharedInstanceBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 68859,
+ "length": 30,
+ "value": "\"tracker_shared_instance_bool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 68923,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 69466,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "StringLiteral",
+ "offset": 69525,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69570,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 77075,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78333,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATracker.swift",
+ "kind": "IntegerLiteral",
+ "offset": 79584,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 4633,
+ "length": 8,
+ "value": "\"config\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 20789,
+ "length": 33,
+ "value": "\"TrackerConfig.dictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20905,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20932,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21443,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 21613,
+ "length": 38,
+ "value": "\"d779849f-fe1d-4690-8edd-e3179914defa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22851,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22869,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22904,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22918,
+ "length": 20,
+ "value": "\"InitNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22952,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22975,
+ "length": 6,
+ "value": "\"init\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 22995,
+ "length": 9,
+ "value": "\"context\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23006,
+ "length": 20,
+ "value": "\"serverUnrestricted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23040,
+ "length": 33,
+ "value": "\"prerequisiteTaskIdentifierArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23087,
+ "length": 15,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23116,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23157,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23177,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23201,
+ "length": 33,
+ "value": "\"privacyRedactionKeySuffixString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23236,
+ "length": 9,
+ "value": "\" (init)\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23263,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23276,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23298,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23334,
+ "length": 46,
+ "value": "[\"init\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23398,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23411,
+ "length": 50,
+ "value": "\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23479,
+ "length": 14,
+ "value": "\"_2_urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23495,
+ "length": 197,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"i\", \"t\", \"-\", \"t\", \"e\", \"s\", \"t\", \"i\", \"n\", \"g\", \".\", \"a\", \"p\", \"i\", \".\", \"k\", \"o\", \"c\", \"h\", \"a\", \"v\", \"a\", \".\", \"c\", \"o\", \"m\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23710,
+ "length": 14,
+ "value": "\"_3_urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 23726,
+ "length": 137,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \":\", \"\/\", \"\/\", \"l\", \"o\", \"c\", \"a\", \"l\", \"h\", \"o\", \"s\", \"t\", \":\", \"8\", \"3\", \"1\", \"5\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 23881,
+ "length": 24,
+ "value": "\"headerDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 23923,
+ "length": 666,
+ "value": "[(\"dictionaryEntryFormatArray\", [[(\"keyString\", \"Accept\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"Content-Type\"), (\"valueObject\", \"application\/json\")], [(\"keyString\", \"User-Agent\"), (\"valueSourceIdentifier\", \"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\")]])]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24607,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24669,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24775,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24788,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24825,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24850,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24966,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 24979,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25017,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25032,
+ "length": 6,
+ "value": "\"init\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25120,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25133,
+ "length": 10,
+ "value": "\"products\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25173,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25198,
+ "length": 39,
+ "value": "\"ProductController.productArrayAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25319,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25332,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25376,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25391,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25477,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25490,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25533,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25558,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25682,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25695,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25737,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25762,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25878,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25891,
+ "length": 13,
+ "value": "\"bundle_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25934,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 25959,
+ "length": 27,
+ "value": "\"KochavaTracker.bundleType\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26068,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26081,
+ "length": 13,
+ "value": "\"instance_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26124,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26149,
+ "length": 38,
+ "value": "\"Networking.instanceIdentifierAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26269,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26282,
+ "length": 17,
+ "value": "\"shared_instance\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26329,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26354,
+ "length": 35,
+ "value": "\"Tracker.sharedInstanceBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26471,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26484,
+ "length": 12,
+ "value": "\"storage_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26526,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26551,
+ "length": 27,
+ "value": "\"Tracker.storageIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26660,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26673,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26719,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26744,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26811,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26830,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26916,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26929,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 26978,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27003,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27057,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27076,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27162,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27175,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27217,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27242,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27314,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27333,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27419,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 27446,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27484,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27497,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27541,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27566,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27643,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27662,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27748,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27761,
+ "length": 11,
+ "value": "\"extension\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27802,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27827,
+ "length": 32,
+ "value": "\"System.appExtensionBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 27941,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 27968,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28006,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28019,
+ "length": 14,
+ "value": "\"partner_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28063,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28088,
+ "length": 41,
+ "value": "\"TrackerGeneral.partnerNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28211,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28238,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28276,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28289,
+ "length": 10,
+ "value": "\"platform\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28329,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28354,
+ "length": 45,
+ "value": "\"TrackerDataPoints.platformNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28481,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28508,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28546,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28559,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28600,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28625,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28683,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28702,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28788,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 28815,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28853,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28866,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28906,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28931,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 28999,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29018,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29104,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29131,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29169,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29182,
+ "length": 13,
+ "value": "\"system_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29225,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29250,
+ "length": 49,
+ "value": "\"TrackerDataPoints.deviceSystemNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29381,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29408,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29446,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29459,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29497,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29522,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29598,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 29617,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29703,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 29730,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29768,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29781,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29820,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29845,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 29983,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30010,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30048,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30061,
+ "length": 16,
+ "value": "\"min_os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30107,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30132,
+ "length": 49,
+ "value": "\"TrackerDataPoints.minimumOSVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30263,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30290,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30328,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30341,
+ "length": 14,
+ "value": "\"last_install\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30385,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30410,
+ "length": 31,
+ "value": "\"Install.lastDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30471,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30490,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30576,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30603,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30641,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30654,
+ "length": 5,
+ "value": "\"url\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30689,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30714,
+ "length": 33,
+ "value": "\"NetTransaction.urlStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30777,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30796,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30882,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 30909,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30947,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 30960,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31002,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31027,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31151,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 31178,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31216,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31229,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31267,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31292,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31429,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 31456,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31494,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31507,
+ "length": 24,
+ "value": "\"deeplinks_augmentation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31561,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31586,
+ "length": 52,
+ "value": "\"Deeplinks.augmentDeferredPrefetchDictionaryAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31720,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31733,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31772,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31797,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31858,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31877,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 31975,
+ "length": 10,
+ "value": "\"response\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32017,
+ "length": 18,
+ "value": "\"localAllowedBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32037,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32060,
+ "length": 17,
+ "value": "\"bodyLocalObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32117,
+ "length": 9,
+ "value": "\"success\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32128,
+ "length": 3,
+ "value": "\"1\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32153,
+ "length": 9,
+ "value": "\"general\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 32184,
+ "length": 68,
+ "value": "[(\"sdk_disabled\", true)]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32298,
+ "length": 30,
+ "value": "\"sendTaskLogMessagesPrintBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32330,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32348,
+ "length": 22,
+ "value": "\"sessionConfiguration\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Dictionary",
+ "offset": 32384,
+ "length": 71,
+ "value": "[(\"networkServiceType\", \"responsiveData\")]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32469,
+ "length": 16,
+ "value": "\"variationArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32539,
+ "length": 11,
+ "value": "\"start_ymd\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32552,
+ "length": 10,
+ "value": "\"20200101\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32584,
+ "length": 6,
+ "value": "\"urls\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 32638,
+ "length": 50,
+ "value": "\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 32714,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"l\", \"i\", \"f\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 32889,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33064,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"a\", \"k\", \"i\", \"s\", \"i\", \"n\", \"n\", \".\", \"i\", \"n\", \"f\", \"o\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33239,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33414,
+ "length": 149,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"a\", \"k\", \"i\", \"s\", \"i\", \"n\", \"n\", \".\", \"s\", \"i\", \"t\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33589,
+ "length": 145,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"x\", \"y\", \"z\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33760,
+ "length": 153,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"v\", \"a\", \"i\", \"c\", \"o\", \"r\", \"e\", \".\", \"s\", \"t\", \"o\", \"r\", \"e\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 33939,
+ "length": 153,
+ "value": "[\"h\", \"t\", \"t\", \"p\", \"s\", \":\", \"\/\", \"\/\", \"i\", \"n\", \"t\", \".\", \"d\", \"e\", \"w\", \"r\", \"a\", \"i\", \"n\", \".\", \"w\", \"o\", \"r\", \"l\", \"d\", \"\/\", \"t\", \"r\", \"a\", \"c\", \"k\", \"\/\", \"k\", \"v\", \"i\", \"n\", \"i\", \"t\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34172,
+ "length": 11,
+ "value": "\"start_ymd\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34185,
+ "length": 10,
+ "value": "\"20250101\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 34217,
+ "length": 6,
+ "value": "\"urls\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "Array",
+ "offset": 34245,
+ "length": 98,
+ "value": "[\"https:\/\/kvinit-prod.api.kochava.com\/track\/kvinit\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35059,
+ "length": 87,
+ "value": "\"Sending kvinit at \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35120,
+ "length": 7,
+ "value": "\" seconds to \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35144,
+ "length": 1,
+ "value": "\")\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35777,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 35836,
+ "length": 17,
+ "value": "\"config_retrieve\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 36387,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 36727,
+ "length": 38,
+ "value": "\"13783265-a6db-4d2e-885d-a36435446793\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 36867,
+ "length": 38,
+ "value": "\"85248e1d-5821-4bc4-93ef-a01c57e357bc\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "StringLiteral",
+ "offset": 37307,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43057,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43702,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerConfig.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45249,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 3875,
+ "length": 12,
+ "value": "\"datapoints\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 15907,
+ "length": 57,
+ "value": "\"TrackerDataPoints.appMainBundleDisplayNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 15995,
+ "length": 10,
+ "value": "\"app_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16039,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16177,
+ "length": 21,
+ "value": "\"CFBundleDisplayName\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16232,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16908,
+ "length": 56,
+ "value": "\"TrackerDataPoints.appMainBundleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 16995,
+ "length": 9,
+ "value": "\"package\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17038,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17176,
+ "length": 20,
+ "value": "\"CFBundleIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17230,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 17951,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18040,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18092,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18117,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18255,
+ "length": 28,
+ "value": "\"CFBundleShortVersionString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 18317,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19024,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19108,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19155,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19180,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19318,
+ "length": 17,
+ "value": "\"CFBundleVersion\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19369,
+ "length": 17,
+ "value": "\"_NOT_AVAILABLE_\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 19959,
+ "length": 46,
+ "value": "\"TrackerDataPoints.appStoreReceiptDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20036,
+ "length": 9,
+ "value": "\"receipt\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20079,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20808,
+ "length": 45,
+ "value": "\"TrackerDataPoints.architectureStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 20884,
+ "length": 14,
+ "value": "\"architecture\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20932,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21611,
+ "length": 52,
+ "value": "\"TrackerDataPoints.batteryLevelPercentageIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21694,
+ "length": 15,
+ "value": "\"battery_level\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21743,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 21787,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 21999,
+ "length": 38,
+ "value": "\"a9ea8db5-bb74-4a70-aada-5de7f7efefe4\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 22276,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 22413,
+ "length": 5,
+ "value": "100.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 23688,
+ "length": 45,
+ "value": "\"TrackerDataPoints.batteryStateStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 23764,
+ "length": 16,
+ "value": "\"battery_status\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 23814,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 23858,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24070,
+ "length": 38,
+ "value": "\"4f413e0a-ec98-4ce0-8525-9ed986f732b9\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24347,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24580,
+ "length": 13,
+ "value": "\"discharging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24693,
+ "length": 10,
+ "value": "\"charging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24799,
+ "length": 6,
+ "value": "\"full\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 24945,
+ "length": 11,
+ "value": "\"nobattery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26007,
+ "length": 35,
+ "value": "\"TrackerDataPoints.bootDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26073,
+ "length": 5,
+ "value": "\"bms\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 26112,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 26156,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26913,
+ "length": 44,
+ "value": "\"TrackerDataPoints.carrierNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 26988,
+ "length": 14,
+ "value": "\"carrier_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 27036,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 27080,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 28677,
+ "length": 45,
+ "value": "\"TrackerDataPoints.cellularTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 28753,
+ "length": 15,
+ "value": "\"cellular_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 28802,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 28846,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 30158,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 30227,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 30271,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 31161,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 31248,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31290,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 31315,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 31359,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 32054,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 32137,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32194,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 32219,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 32263,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 34261,
+ "length": 44,
+ "value": "\"TrackerDataPoints.deviceModelStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 34336,
+ "length": 14,
+ "value": "\"device_model\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 34384,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 35206,
+ "length": 48,
+ "value": "\"TrackerDataPoints.deviceOrientationEnumAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 35285,
+ "length": 20,
+ "value": "\"device_orientation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 35339,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 35383,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36272,
+ "length": 11,
+ "value": "\"landscape\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36319,
+ "length": 10,
+ "value": "\"portrait\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 36635,
+ "length": 38,
+ "value": "\"84ae1223-4901-4632-a982-f5c3ccfcd78d\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 37541,
+ "length": 49,
+ "value": "\"TrackerDataPoints.deviceSystemNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 37621,
+ "length": 13,
+ "value": "\"system_name\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 37668,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 38304,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 38390,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38434,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 38459,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 38503,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39056,
+ "length": 55,
+ "value": "\"TrackerDataPoints.hardwareMachineModelIdStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39142,
+ "length": 8,
+ "value": "\"device\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39184,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39866,
+ "length": 45,
+ "value": "\"TrackerDataPoints.iabUSPrivacyStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 39942,
+ "length": 9,
+ "value": "\"iab_usp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 39985,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 40212,
+ "length": 21,
+ "value": "\"IABUSPrivacy_String\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40284,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 40419,
+ "length": 3,
+ "value": "128"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 41038,
+ "length": 35,
+ "value": "\"TrackerDataPoints.idctDataAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 41104,
+ "length": 6,
+ "value": "\"idct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 41144,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 41188,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 42922,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 42990,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43030,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 43055,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 43099,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 44367,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 44435,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44475,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 44500,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 44544,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 45410,
+ "length": 42,
+ "value": "\"TrackerDataPoints.ipAddressStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 45483,
+ "length": 12,
+ "value": "\"ip_address\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 45529,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46024,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46105,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46149,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 46174,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 46218,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46877,
+ "length": 53,
+ "value": "\"TrackerDataPoints.mainScreenBrightnessNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 46961,
+ "length": 19,
+ "value": "\"screen_brightness\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 47014,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 47058,
+ "length": 4,
+ "value": "15.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 48228,
+ "length": 58,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsHeightIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 48317,
+ "length": 8,
+ "value": "\"disp_h\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 48359,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 48403,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 49170,
+ "length": 57,
+ "value": "\"TrackerDataPoints.mainScreenNativeBoundsWidthIntAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 49258,
+ "length": 8,
+ "value": "\"disp_w\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 49300,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 49344,
+ "length": 4,
+ "value": "60.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50154,
+ "length": 49,
+ "value": "\"TrackerDataPoints.minimumOSVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50234,
+ "length": 16,
+ "value": "\"min_os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 50284,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 50422,
+ "length": 18,
+ "value": "\"MinimumOSVersion\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51119,
+ "length": 54,
+ "value": "\"TrackerDataPoints.networkConnectionTypeStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51204,
+ "length": 19,
+ "value": "\"network_conn_type\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 51257,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 51301,
+ "length": 4,
+ "value": "30.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "Array",
+ "offset": 51538,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 51649,
+ "length": 16,
+ "value": "\"www.google.com\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 52032,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52102,
+ "length": 10,
+ "value": "\"cellular\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 52192,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52262,
+ "length": 6,
+ "value": "\"wifi\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 52376,
+ "length": 6,
+ "value": "\"none\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53095,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53166,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53212,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 53237,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53452,
+ "length": 11,
+ "value": "\"\/bin\/bash\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 53465,
+ "length": 3,
+ "value": "\"r\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 54739,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 54812,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54858,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 54883,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55020,
+ "length": 66,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55051,
+ "length": 1,
+ "value": "\" \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 55085,
+ "length": 14,
+ "value": "\"\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "Dictionary",
+ "offset": 55714,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 56399,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57238,
+ "length": 45,
+ "value": "\"TrackerDataPoints.platformNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57314,
+ "length": 10,
+ "value": "\"platform\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 57358,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57502,
+ "length": 13,
+ "value": "\"ios-appclip\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 57547,
+ "length": 5,
+ "value": "\"ios\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 66149,
+ "length": 54,
+ "value": "\"TrackerDataPoints.sdkGeneratedUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 66234,
+ "length": 18,
+ "value": "\"sdk_generated_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 66286,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 67293,
+ "length": 42,
+ "value": "\"TrackerDataPoints.userAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 67366,
+ "length": 12,
+ "value": "\"User-Agent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67412,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 67873,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 68926,
+ "length": 45,
+ "value": "\"TrackerDataPoints.outputVolumeNumberAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 69002,
+ "length": 8,
+ "value": "\"volume\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 69044,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 69088,
+ "length": 4,
+ "value": "10.0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 70076,
+ "length": 34,
+ "value": "\"TrackerDataPoints.vpnBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 70141,
+ "length": 5,
+ "value": "\"nvp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 70180,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "FloatLiteral",
+ "offset": 70224,
+ "length": 4,
+ "value": "0.25"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "IntegerLiteral",
+ "offset": 70495,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71266,
+ "length": 5,
+ "value": "\"tun\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71331,
+ "length": 5,
+ "value": "\"tap\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71396,
+ "length": 7,
+ "value": "\"ipsec\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 71463,
+ "length": 5,
+ "value": "\"ppp\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 72438,
+ "length": 49,
+ "value": "\"TrackerDataPoints.webViewUserAgentStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 72518,
+ "length": 11,
+ "value": "\"system_ua\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 72563,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 72590,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73183,
+ "length": 38,
+ "value": "\"4544725c-203c-45d8-954c-7607ff31124b\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73480,
+ "length": 15,
+ "value": "\"<\/html>\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 73558,
+ "length": 21,
+ "value": "\"navigator.userAgent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74049,
+ "length": 22,
+ "value": "\"User Agent Persisted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74102,
+ "length": 26,
+ "value": "\"User Agent Not Persisted\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 74462,
+ "length": 17,
+ "value": "\"userAgentString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 75025,
+ "length": 84,
+ "value": "\"Collection duration for User Agent was \""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "StringLiteral",
+ "offset": 75100,
+ "length": 7,
+ "value": "\" seconds\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78535,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerDatapoints.swift",
+ "kind": "BooleanLiteral",
+ "offset": 78700,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "StringLiteral",
+ "offset": 3219,
+ "length": 9,
+ "value": "\"logging\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11400,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerLogging.swift",
+ "kind": "BooleanLiteral",
+ "offset": 11528,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Array",
+ "offset": 2207,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2319,
+ "length": 14,
+ "value": "\"AVFoundation\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2443,
+ "length": 9,
+ "value": "\"Battery\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2569,
+ "length": 15,
+ "value": "\"CoreTelephony\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 2848,
+ "length": 18,
+ "value": "\"ScreenAttributes\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 3001,
+ "length": 18,
+ "value": "\"WebViewUserAgent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 3121,
+ "length": 9,
+ "value": "\"Tracker\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 3833,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4036,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4283,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4544,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 4888,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5019,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5287,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 5539,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6055,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 6271,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6556,
+ "length": 51,
+ "value": "\"COMPILER_FLAG_APP_TRACKING_TRANSPARENCY_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6691,
+ "length": 28,
+ "value": "\"COMPILER_FLAG_AVFOUNDATION\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6798,
+ "length": 23,
+ "value": "\"COMPILER_FLAG_BATTERY\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 6906,
+ "length": 30,
+ "value": "\"COMPILER_FLAG_CORE_TELEPHONY\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7022,
+ "length": 31,
+ "value": "\"COMPILER_FLAG_CRASH_REPORTING\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7138,
+ "length": 30,
+ "value": "\"COMPILER_FLAG_IDCT_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7256,
+ "length": 33,
+ "value": "\"COMPILER_FLAG_SCREEN_ATTRIBUTES\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7382,
+ "length": 39,
+ "value": "\"COMPILER_FLAG_SKADNETWORK_4_SUPPORTED\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7509,
+ "length": 35,
+ "value": "\"COMPILER_FLAG_WEB_VIEW_USER_AGENT\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Array",
+ "offset": 7807,
+ "length": 2,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 7841,
+ "length": 21,
+ "value": "\"KVAAdNetworkProduct\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "IntegerLiteral",
+ "offset": 7935,
+ "length": 1,
+ "value": "0"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8296,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8448,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8486,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8558,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "Dictionary",
+ "offset": 8788,
+ "length": 3,
+ "value": "[]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "StringLiteral",
+ "offset": 8905,
+ "length": 32,
+ "value": "\"didInvalidateSharedTrackerBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerProduct.swift",
+ "kind": "BooleanLiteral",
+ "offset": 8941,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 3448,
+ "length": 9,
+ "value": "\"updates\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12096,
+ "length": 16,
+ "value": "\"baseIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12114,
+ "length": 21,
+ "value": "\"BasicNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12149,
+ "length": 12,
+ "value": "\"identifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12163,
+ "length": 22,
+ "value": "\"UpdateNetTransaction\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12199,
+ "length": 21,
+ "value": "\"universalIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12222,
+ "length": 8,
+ "value": "\"update\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12244,
+ "length": 21,
+ "value": "\"consentRequiredBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12267,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12285,
+ "length": 13,
+ "value": "\"persistBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12300,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12318,
+ "length": 9,
+ "value": "\"request\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12359,
+ "length": 18,
+ "value": "\"httpMethodString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12379,
+ "length": 6,
+ "value": "\"POST\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12403,
+ "length": 11,
+ "value": "\"retryBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 12416,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12438,
+ "length": 18,
+ "value": "\"urlIdStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 12474,
+ "length": 48,
+ "value": "[\"update\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12540,
+ "length": 11,
+ "value": "\"urlString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12553,
+ "length": 40,
+ "value": "\"https:\/\/control.kochava.com\/track\/json\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12611,
+ "length": 22,
+ "value": "\"bodyDictionaryFormat\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12673,
+ "length": 28,
+ "value": "\"dictionaryEntryFormatArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12779,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12792,
+ "length": 7,
+ "value": "\"nt_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12829,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12854,
+ "length": 34,
+ "value": "\"NetTransaction.uuidStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12970,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 12983,
+ "length": 8,
+ "value": "\"action\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13021,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13036,
+ "length": 8,
+ "value": "\"update\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13126,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13139,
+ "length": 14,
+ "value": "\"sdk_protocol\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13183,
+ "length": 13,
+ "value": "\"valueObject\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13198,
+ "length": 4,
+ "value": "\"18\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13284,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13297,
+ "length": 13,
+ "value": "\"sdk_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13340,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13365,
+ "length": 42,
+ "value": "\"KochavaTracker.standardVersionInfoString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13489,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13502,
+ "length": 12,
+ "value": "\"init_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13544,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13569,
+ "length": 34,
+ "value": "\"TrackerConfig.tokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13685,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13698,
+ "length": 16,
+ "value": "\"kochava_app_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13744,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13769,
+ "length": 37,
+ "value": "\"TrackerGeneral.appGUIDStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13836,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 13855,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13941,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 13954,
+ "length": 19,
+ "value": "\"kochava_device_id\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14003,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14028,
+ "length": 24,
+ "value": "\"DeviceId.stringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14082,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 14101,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14187,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14214,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14252,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14265,
+ "length": 14,
+ "value": "\"state_active\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14309,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14334,
+ "length": 47,
+ "value": "\"Sessions.currentSessionStateActiveBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14463,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14490,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14528,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14541,
+ "length": 11,
+ "value": "\"starttime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14582,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14607,
+ "length": 28,
+ "value": "\"Tracker.startedDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14717,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 14744,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14782,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14795,
+ "length": 10,
+ "value": "\"usertime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14835,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14860,
+ "length": 38,
+ "value": "\"TrackerDataPoints.currentDateAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 14980,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15007,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15045,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15058,
+ "length": 8,
+ "value": "\"uptime\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15096,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15121,
+ "length": 46,
+ "value": "\"Sessions.currentSessionUpTimeIntervalAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15249,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15276,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15314,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15327,
+ "length": 19,
+ "value": "\"ad_services_token\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15376,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15401,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15477,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15502,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15589,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 15616,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15654,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15667,
+ "length": 24,
+ "value": "\"ad_services_token_time\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15721,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15746,
+ "length": 46,
+ "value": "\"AppleSearchAds.attributionTokenStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15822,
+ "length": 31,
+ "value": "\"valueSourcePropertyNameString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15855,
+ "length": 33,
+ "value": "\"startDate.unixTimeDecimalNumber\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 15918,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 15943,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16030,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16057,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16095,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16108,
+ "length": 20,
+ "value": "\"app_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16158,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16183,
+ "length": 37,
+ "value": "\"AppLimitAdTracking.valueBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16250,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16275,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16362,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16389,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16427,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16440,
+ "length": 6,
+ "value": "\"idfa\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16476,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16501,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfaStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16568,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16593,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16680,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 16707,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16745,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16758,
+ "length": 6,
+ "value": "\"idfv\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16794,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16819,
+ "length": 37,
+ "value": "\"TrackerDataPoints.idfvStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16886,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 16911,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 16998,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17025,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17063,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17076,
+ "length": 13,
+ "value": "\"app_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17119,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17144,
+ "length": 53,
+ "value": "\"TrackerDataPoints.appMainBundleVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17227,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17252,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17339,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17366,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17404,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17417,
+ "length": 18,
+ "value": "\"app_short_string\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17465,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17490,
+ "length": 58,
+ "value": "\"TrackerDataPoints.appMainBundleShortVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17578,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17603,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17690,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 17717,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17755,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17768,
+ "length": 12,
+ "value": "\"os_version\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17810,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17835,
+ "length": 42,
+ "value": "\"TrackerDataPoints.osVersionStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 17907,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 17932,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18019,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18046,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18084,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18097,
+ "length": 23,
+ "value": "\"device_limit_tracking\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18150,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18175,
+ "length": 52,
+ "value": "\"TrackerDataPoints.deviceLimitAdTrackingBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18257,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18282,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18369,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18396,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18434,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18447,
+ "length": 12,
+ "value": "\"is_genuine\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18489,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18514,
+ "length": 40,
+ "value": "\"TrackerDataPoints.osGenuineBoolAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18584,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18609,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18696,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 18723,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18761,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18774,
+ "length": 10,
+ "value": "\"language\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18814,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18839,
+ "length": 55,
+ "value": "\"TrackerDataPoints.firstPreferredLanguageStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 18924,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 18949,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19036,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19063,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19101,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19114,
+ "length": 10,
+ "value": "\"timezone\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19154,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19179,
+ "length": 50,
+ "value": "\"TrackerDataPoints.localTimeZoneNameStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19259,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19284,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19371,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19398,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19436,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19449,
+ "length": 8,
+ "value": "\"locale\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19487,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19512,
+ "length": 56,
+ "value": "\"TrackerDataPoints.currentLocaleIdentifierStringAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19598,
+ "length": 23,
+ "value": "\"valueSourceGlobalBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19623,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19710,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19723,
+ "length": 9,
+ "value": "\"consent\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19762,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19787,
+ "length": 31,
+ "value": "\"NetTransaction.consentAdapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19848,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 19867,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 19953,
+ "length": 25,
+ "value": "\"subChunkNameStringArray\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 19980,
+ "length": 8,
+ "value": "[\"data\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20018,
+ "length": 11,
+ "value": "\"keyString\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20031,
+ "length": 27,
+ "value": "\"app_tracking_transparency\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20088,
+ "length": 23,
+ "value": "\"valueSourceIdentifier\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20113,
+ "length": 33,
+ "value": "\"AppTrackingTransparency.adapter\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20176,
+ "length": 17,
+ "value": "\"valueUpdateBool\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 20195,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20819,
+ "length": 25,
+ "value": "\"TrackerUpdates.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20879,
+ "length": 14,
+ "value": "\"updates_send\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 20970,
+ "length": 18,
+ "value": "\"Install.sendTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "StringLiteral",
+ "offset": 21006,
+ "length": 28,
+ "value": "\"TrackerConfig.retrieveTask\""
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "Array",
+ "offset": 21288,
+ "length": 60,
+ "value": "[\"TrackerConfig.retrieveTask\"]"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21671,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 21785,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 24281,
+ "length": 4,
+ "value": "true"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25216,
+ "length": 5,
+ "value": "false"
+ },
+ {
+ "filePath": "\/Users\/johnbushnell\/Code\/Kochava\/Apple-KochavaSDK-Source\/KochavaTracker\/KochavaTracker\/ClassFiles\/KVATrackerUpdates.swift",
+ "kind": "BooleanLiteral",
+ "offset": 25356,
+ "length": 5,
+ "value": "false"
+ }
+ ]
+}
\ No newline at end of file
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface
new file mode 100644
index 0000000..d01f775
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface
@@ -0,0 +1,851 @@
+// swift-interface-format-version: 1.0
+// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
+// swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name KochavaTracker
+// swift-module-flags-ignorable: -enable-bare-slash-regex
+import AVFoundation
+import AdServices
+import AdSupport
+import CoreTelephony
+import DeviceCheck
+import Foundation
+import JavaScriptCore
+import KochavaCore
+@_exported import KochavaTracker
+import StoreKit
+import Swift
+import SystemConfiguration
+import UIKit
+import UserNotifications
+import WebKit
+import _Concurrency
+import _StringProcessing
+@_hasMissingDesignatedInitializers @objc(KVAEventType) final public class KVAEventType : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ @objc public static let achievement: KochavaTracker.KVAEventType
+ @objc public static let adClick: KochavaTracker.KVAEventType
+ @objc public static let addToCart: KochavaTracker.KVAEventType
+ @objc public static let addToWishList: KochavaTracker.KVAEventType
+ @objc public static let adView: KochavaTracker.KVAEventType
+ @objc public static let checkoutStart: KochavaTracker.KVAEventType
+ @objc public static let consentGranted: KochavaTracker.KVAEventType
+ @objc public static let custom: KochavaTracker.KVAEventType
+ @objc public static let deeplink: KochavaTracker.KVAEventType
+ @objc public static let levelComplete: KochavaTracker.KVAEventType
+ @objc public static let purchase: KochavaTracker.KVAEventType
+ @objc public static let pushOpened: KochavaTracker.KVAEventType
+ @objc public static let pushReceived: KochavaTracker.KVAEventType
+ @objc public static let rating: KochavaTracker.KVAEventType
+ @objc public static let registrationComplete: KochavaTracker.KVAEventType
+ @objc public static let search: KochavaTracker.KVAEventType
+ @objc public static let startTrial: KochavaTracker.KVAEventType
+ @objc public static let subscribe: KochavaTracker.KVAEventType
+ @objc public static let tutorialComplete: KochavaTracker.KVAEventType
+ @objc public static let view: KochavaTracker.KVAEventType
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public let nameString: Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider, KochavaCore.KVANetworkingSetterProvider {
+ @objc override required dynamic public init()
+ @objc(initWithType:) public init(type: KochavaTracker.KVAEventType)
+ @available(*, deprecated, renamed: "init(type:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]")
+ @objc(eventWithType:) public static func event(withType type: KochavaTracker.KVAEventType) -> Self
+ @objc(initWithTypeNameString:) convenience public init(typeNameString: Swift.String)
+ @available(*, deprecated, renamed: "init(typeNameString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]")
+ @objc(eventWithTypeNameString:) public static func event(withTypeNameString typeNameString: Swift.String) -> Self
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ final public func execute()
+ @objc final public func send()
+ @objc(sendWithSenderArray:) final public func send(senderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "send(senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func send(senderArray:) instead.")
+ @nonobjc final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc final public func eventNameString() -> Swift.String
+ @objc(valueObjectForPropertyIdentifier:) final public func valueObject(forPropertyIdentifier propertyIdentifier: KochavaTracker.KVAEvent.PropertyIdentifier?) -> Swift.AnyObject?
+ public typealias PropertyIdentifier = Swift.String
+ @objc final public func subURLIdString() -> Swift.String?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var eventType: KochavaTracker.KVAEventType {
+ get
+ }
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var sendAsyncBool: Swift.Bool
+ @objc final public var sendLogMessagePrintBool: Swift.Bool
+ @objc final public var serviceLocallyBool: Swift.Bool {
+ @objc get
+ @objc set(serviceLocallyBool)
+ }
+ @objc final public var actionString: Swift.String?
+ @objc final public var adCampaignIdString: Swift.String?
+ @objc final public var adCampaignNameString: Swift.String?
+ @objc final public var adDeviceTypeString: Swift.String?
+ @objc final public var adGroupIdString: Swift.String?
+ @objc final public var adGroupNameString: Swift.String?
+ @objc final public var adMediationNameString: Swift.String?
+ @objc final public var adNetworkNameString: Swift.String?
+ @objc final public var adPlacementString: Swift.String?
+ @objc final public var adSizeString: Swift.String?
+ @objc final public var adTypeString: Swift.String?
+ @objc final public var appleWatchBool: Swift.Bool
+ @objc final public var appleWatchIdString: Swift.String?
+ @objc final public var appStoreReceiptBase64EncodedString: Swift.String?
+ @objc final public var backgroundBoolNumber: Foundation.NSNumber?
+ @objc final public var checkoutAsGuestString: Swift.String?
+ @objc final public var completedBoolNumber: Foundation.NSNumber?
+ @objc final public var consent: KochavaCore.KVAConsent? {
+ @objc get
+ @objc set(consent)
+ }
+ @objc final public var contentIdString: Swift.String?
+ @objc final public var contentTypeString: Swift.String?
+ @objc final public var currencyString: Swift.String?
+ @objc final public var customEventName: KochavaTracker.KVAEvent.CustomEventName?
+ @available(*, deprecated, renamed: "customEventName")
+ @objc final public var customEventNameString: KochavaTracker.KVAEvent.CustomEventName?
+ public typealias CustomEventName = Swift.String
+ @objc final public var date: Foundation.Date?
+ @objc final public var dateString: Swift.String?
+ @objc final public var descriptionString: Swift.String?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var durationTimeIntervalNumber: Foundation.NSNumber?
+ @objc final public var endDate: Foundation.Date?
+ @objc final public var endDateString: Swift.String?
+ @objc final public var infoDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(infoDictionary)
+ }
+ @objc final public var infoString: Swift.String?
+ @objc final public var itemAddedFromString: Swift.String?
+ @objc final public var levelString: Swift.String?
+ @objc final public var maxRatingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var nameString: Swift.String?
+ @objc final public var orderIdString: Swift.String?
+ @objc final public var originString: Swift.String?
+ @objc final public var payloadDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(payloadDictionary)
+ }
+ @objc final public var priceDecimalNumber: Foundation.NSDecimalNumber?
+ @objc final public var priceDoubleNumber: Foundation.NSNumber?
+ @objc final public var quantityDoubleNumber: Foundation.NSNumber?
+ @objc final public var ratingValueDoubleNumber: Foundation.NSNumber?
+ @objc final public var receiptIdString: Swift.String?
+ @objc final public var referralFromString: Swift.String?
+ @objc final public var registrationMethodString: Swift.String?
+ @objc final public var resultsString: Swift.String?
+ @objc final public var scoreString: Swift.String?
+ @objc final public var searchTermString: Swift.String?
+ @objc final public var sourceString: Swift.String?
+ @objc final public var spatialXDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialYDoubleNumber: Foundation.NSNumber?
+ @objc final public var spatialZDoubleNumber: Foundation.NSNumber?
+ @objc final public var startDate: Foundation.Date?
+ @objc final public var startDateString: Swift.String?
+ @objc final public var successString: Swift.String?
+ @objc final public var userIdString: Swift.String?
+ @objc final public var uriString: Swift.String?
+ @objc final public var userNameString: Swift.String?
+ @objc final public var validatedString: Swift.String?
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetwork) final public class KVAAdNetwork : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @objc get
+ @objc set(conversion)
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRegisterAppForAttribution: KochavaTracker.KVAAdNetwork.Closure_DidRegisterAppForAttribution? {
+ @objc get
+ @objc set(closure_didRegisterAppForAttribution)
+ }
+ @available(*, deprecated, renamed: "closure_didRegisterAppForAttribution")
+ @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetworkDidRegisterAppForAttributionBlock? {
+ @objc get
+ @objc set(didRegisterAppForAttributionBlock)
+ }
+ public typealias Closure_DidRegisterAppForAttribution = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppLimitAdTracking) final public class KVAAppLimitAdTracking : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc(boolean) final public var bool: Swift.Bool {
+ @objc get
+ @objc set(bool)
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppTrackingTransparency) final public class KVAAppTrackingTransparency : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var autoRequestTrackingAuthorizationBool: Swift.Bool {
+ @objc get
+ @objc set(autoRequestTrackingAuthorizationBool)
+ }
+ @objc final public var authorizationStatusWaitTimeInterval: Foundation.TimeInterval {
+ @objc get
+ @objc set(authorizationStatusWaitTimeInterval)
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+ @objc final public var authorizationStatusString: Swift.String? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAttribution) final public class KVAAttribution : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(closure_didComplete: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
+ @objc final public var result: KochavaTracker.KVAAttributionResult {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didRetrieveResult: KochavaTracker.KVAAttribution.Closure_DidRetrieveResult? {
+ @objc get
+ @objc set(closure_didRetrieveResult)
+ }
+ public typealias Closure_DidRetrieveResult = (_ attribution: KochavaTracker.KVAAttribution, _ attributionResult: KochavaTracker.KVAAttributionResult) -> Swift.Void
+ @objc final public var retrieveResultBool: Swift.Bool {
+ @objc get
+ @objc set(retrieveResultBool)
+ }
+ @objc deinit
+}
+@_hasMissingDesignatedInitializers @objc(KVAAttributionResult) final public class KVAAttributionResult : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var attributedBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var firstInstallBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public let rawDictionary: [Swift.AnyHashable : Any]?
+ @objc final public var retrievedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVACustomIdentifiers) final public class KVACustomIdentifiers : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVACustomIdentifiers.Name, identifier: KochavaTracker.KVACustomIdentifiers.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(processWithURL:closure_didComplete:) public static func process(url: Foundation.URL?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:")
+ @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:processor:closure_didComplete:) public static func process(url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:")
+ @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:processor:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ public typealias Closure_Process_DidComplete = (_ deeplink: KochavaTracker.KVADeeplink) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var urlString: Swift.String?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var destinationString: Swift.String?
+ @objc final public var rawDictionary: [Swift.AnyHashable : Any]? {
+ @objc get
+ @objc set(rawDictionary)
+ }
+ @objc deinit
+}
+@objc public protocol KVADeeplinksProcessor {
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+}
+@objc public protocol KVADeeplinksProcessorProvider {
+ @objc var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplinks) final public class KVADeeplinks : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessor, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc(augmentDeferredPrefetchWithName:identifier:) final public func augmentDeferredPrefetch(name: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchName, identifier: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchIdentifier)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias AugmentDeferredPrefetchName = Swift.String
+ public typealias AugmentDeferredPrefetchIdentifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeviceId) final public class KVADeviceId : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var string: Swift.String? {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAEvents) final public class KVAEvents : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVAEventSender, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func invalidate()
+ @objc final public func send(event: KochavaTracker.KVAEvent)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversion) final public class KVAAdNetworkConversion : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didUpdatePostbackValue: KochavaTracker.KVAAdNetworkConversion.Closure_DidUpdatePostbackValue? {
+ @objc get
+ @objc set(closure_didUpdatePostbackValue)
+ }
+ @available(*, deprecated, renamed: "closure_didUpdatePostbackValue")
+ @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversionDidUpdateValueBlock? {
+ @objc get
+ @objc set(didUpdateValueBlock)
+ }
+ public typealias Closure_DidUpdatePostbackValue = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
+ @objc final public var result: KochavaTracker.KVAAdNetworkConversionResult {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVAIdentityLink.Name, identifier: KochavaTracker.KVAIdentityLink.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.")
+ @objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAInstall) final public class KVAInstall : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var didStartFirstDate: Foundation.Date? {
+ @objc get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversionResult) final public class KVAAdNetworkConversionResult : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAMutable {
+ @objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
+ @objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
+ @objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc final public func valueInt() -> Swift.Int
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @available(iOS 16.0, iOSApplicationExtension 16.0, *)
+ @objc final public var coarseValue: StoreKit.SKAdNetwork.CoarseConversionValue? {
+ @objc get
+ }
+ @objc final public var error: Swift.Error? {
+ @objc get
+ }
+ @objc final public var modelString: Swift.String? {
+ @objc get
+ }
+ final public var translatedValueInt: KochavaTracker.KVAAdNetworkConversionResult.TranslatedValueInt? {
+ get
+ }
+ @objc final public var translatedValueIntNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ public typealias TranslatedValueInt = Swift.Int
+ @objc final public var rawValueNumber: Foundation.NSNumber? {
+ @objc get
+ }
+ @objc deinit
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAPushNotifications) final public class KVAPushNotifications : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAMutable, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaTracker.KVAPushNotificationsTokenRegistrar, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var enabledBool: Swift.Bool {
+ @objc get
+ @objc set(enabledBool)
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerGeneral) final public class KVATrackerGeneral : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public let instanceCreatedDate: Foundation.Date
+ public static let startSequenceDidCompleteNotificationName: Foundation.Notification.Name
+}
+@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(registerWithData:) public static func register(data: Foundation.Data)
+ @available(*, deprecated, renamed: "register(data:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:) instead.")
+ public static func register(withData data: Foundation.Data)
+ @objc(registerWithData:registrarArray:) public static func register(data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(data:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:registrarArray:) instead.")
+ public static func register(withData data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @objc(registerWithDataHexString:) public static func register(dataHexString: Swift.String)
+ @available(*, deprecated, renamed: "register(dataHexString:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String)
+ @objc(registerWithDataHexString:registrarArray:) public static func register(dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(dataHexString:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:registrarArray:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ public static func kva_from(_ object: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public let data: Foundation.Data?
+ @objc final public let providedDate: Foundation.Date?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc deinit
+}
+@objc public protocol KVAPushNotificationsTokenRegistrar {
+ @objc(registerToken:) func register(token: KochavaTracker.KVAPushNotificationsToken)
+}
+@objc public protocol KVAPushNotificationsTokenRegistrarProvider {
+ @objc var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar { get }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaCore.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider, KochavaCore.KVAStartable, KochavaCore.KVAStartableWithOptions, KochavaCore.KVAStoppable, KochavaCore.KVAStoppableWithOptions {
+ @objc public static var shared: KochavaTracker.KVATracker {
+ @objc get
+ }
+ @objc public static var shared_optional: KochavaTracker.KVATracker? {
+ @objc get
+ }
+ @objc public static var sharedInstance: Swift.AnyObject {
+ @objc get
+ }
+ @objc override convenience dynamic public init()
+ @objc(initWithStorageIdentifier:) required public init(storageIdentifier: KochavaCore.KVANetworking.StorageIdentifier?)
+ @available(*, deprecated, renamed: "init()", message: "Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.")
+ @objc(tracker) public static func tracker() -> Self
+ @available(*, deprecated, renamed: "init(storageIdentifier:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.")
+ @objc(trackerWithStorageIdString:) public static func tracker(withStorageIdString storageIdString: Swift.String?) -> Self
+ @objc deinit
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ @objc(configureWith:context:) final public func configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(startWithAppGUIDString:) final public func start(withAppGUIDString appGUIDString: Swift.String)
+ @objc(startWithPartnerNameString:) final public func start(withPartnerNameString partnerNameString: Swift.String)
+ @objc final public func start()
+ @objc final public func start(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func stop()
+ @objc final public func stop(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func invalidate()
+ @objc final public func invalidate(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc override final public var description: Swift.String {
+ @objc get
+ }
+ @objc final public var adNetwork: KochavaTracker.KVAAdNetwork {
+ @objc get
+ }
+ @objc final public var appLimitAdTracking: KochavaTracker.KVAAppLimitAdTracking {
+ @objc get
+ }
+ @objc final public var appTrackingTransparency: KochavaTracker.KVAAppTrackingTransparency {
+ @objc get
+ }
+ @objc final public var attribution: KochavaTracker.KVAAttribution {
+ @objc get
+ }
+ @objc final public var config: KochavaTracker.KVATrackerConfig {
+ @objc get
+ }
+ @objc final public var customIdentifiers: KochavaTracker.KVACustomIdentifiers {
+ @objc get
+ }
+ @objc final public var deeplinks: KochavaTracker.KVADeeplinks {
+ @objc get
+ }
+ @objc final public var deviceId: KochavaTracker.KVADeviceId {
+ @objc get
+ }
+ final public var events: KochavaTracker.KVAEvents {
+ get
+ }
+ @objc final public var general: KochavaTracker.KVATrackerGeneral {
+ @objc get
+ }
+ @objc final public var identityLink: KochavaTracker.KVAIdentityLink {
+ @objc get
+ }
+ @objc final public var install: KochavaTracker.KVAInstall {
+ @objc get
+ }
+ @objc final public var networking: KochavaCore.KVANetworking {
+ @objc get
+ }
+ @objc final public var pushNotifications: KochavaTracker.KVAPushNotifications {
+ @objc get
+ }
+ @available(*, deprecated, renamed: "appLimitAdTracking.bool", message: "Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.")
+ @objc final public var appLimitAdTrackingBool: Swift.Bool {
+ @objc get
+ @objc set(appLimitAdTrackingBool)
+ }
+ @available(*, deprecated, renamed: "deviceId.string", message: "Convenience wrapper function deprecated. Use var deviceId.string instead.")
+ @objc final public var deviceIdString: Swift.String? {
+ @objc get
+ }
+ @objc final public var privacy: KochavaCore.KVAPrivacy {
+ @objc get
+ }
+ @objc final public var sleepBool: Swift.Bool {
+ @objc get
+ @objc set(sleepBool)
+ }
+ @objc final public var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? {
+ @objc get
+ }
+ @objc final public var eventSender: KochavaTracker.KVAEventSender {
+ @objc get
+ }
+ @objc final public var privacyProfileRegistrar: KochavaCore.KVAPrivacyProfileRegistrar {
+ @objc get
+ }
+ @objc final public var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar {
+ @objc get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc public static var sharedStorageIdentifier: KochavaCore.KVANetworking.StorageIdentifier? {
+ @objc get
+ @objc set(sharedStorageIdentifier)
+ }
+ @available(*, deprecated, renamed: "sharedStorageIdentifier", message: "Use sharedStorageIdentifier instead.")
+ @objc public static var sharedStorageIdString: Swift.String? {
+ @objc get
+ @objc set(sharedStorageIdString)
+ }
+ @objc final public var startedBool: Swift.Bool {
+ @objc get
+ }
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerConfig) final public class KVATrackerConfig : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public func invalidate()
+ @objc(retrieveWithClosure_didComplete:) final public func retrieve(closure_didComplete: @escaping KochavaTracker.KVATrackerConfig.Closure_Retrieve_DidComplete)
+ public typealias Closure_Retrieve_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ @objc final public var closure_didComplete: KochavaTracker.KVATrackerConfig.Closure_DidComplete? {
+ @objc get
+ @objc set(closure_didComplete)
+ }
+ public typealias Closure_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ @objc final public var consentGDPRAppliesBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var collectedBool: Swift.Bool {
+ @objc get
+ }
+ @objc deinit
+}
+extension Foundation.Date {
+ public func kva_sendDateString(fromRequestBodyDictionary requestBodyDictionary: [Swift.AnyHashable : Any]?) -> Swift.String
+}
+@available(iOS 16.0, *)
+extension StoreKit.SKAdNetwork.CoarseConversionValue {
+ @available(iOS 16.0, *)
+ public func kva_identifier() -> Swift.String
+ public static func kva_from(_ object: Any?) -> StoreKit.SKAdNetwork.CoarseConversionValue?
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
+ public static func kva_from(_ object: Any?) -> Self?
+ public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
+ final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
+ final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
+ final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ final public func start()
+ final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appMainBundleVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var appStoreReceiptDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var architectureStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var batteryStateStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var bootDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var carrierNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var cellularTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentDateAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func deviceLimitAdTrackingBool() -> Swift.Bool
+ final public var deviceModelStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceOrientationStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var deviceSystemNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var iabUSPrivacyStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idctDataAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public func idfaString() -> Swift.String?
+ final public var idfaStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var idfvStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var ipAddressStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var localTimezoneNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var minimumOSVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var mutator: KochavaCore.KVAMutator {
+ get
+ }
+ final public var networkConnectionTypeStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osGenuineBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var osVersionStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var platformNameStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var userAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var volumeNumberAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var vpnBoolAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ final public var webViewUserAgentStringAdapter: KochavaCore.KVAAdapter {
+ get
+ }
+ @objc deinit
+}
+extension KochavaTracker.KVAEvent {
+ @objc(sendCustomWithEventName:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "sendCustom(eventName:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.")
+ @objc(sendCustomWithNameString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @objc(sendCustomWithEventName:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.")
+ @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoDictionary:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @objc(sendCustomWithEventName:infoDictionary:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoString:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.")
+ @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @objc(sendCustomWithEventName:infoString:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(initCustomWithEventName:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "init(customWithEventName:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]")
+ @objc(customEventWithNameString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName) -> Self
+ @objc(initCustomWithEventName:infoDictionary:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoDictionary:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]")
+ @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
+ @objc(initCustomWithEventName:infoString:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]")
+ @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?) -> Self
+}
+@_inheritsConvenienceInitializers @objc(KVATrackerProduct) final public class KVATrackerProduct : ObjectiveC.NSObject, KochavaCore.KVASharedPropertyProvider {
+ @objc public static let shared: KochavaCore.KVAProduct
+ public static var sharedInstance: Swift.AnyObject {
+ get
+ }
+ @objc override dynamic public init()
+ @objc deinit
+}
+@objc public protocol KVAEventSender {
+ @objc(sendEvent:) func send(event: KochavaTracker.KVAEvent)
+}
+@objc public protocol KVAEventSenderProvider {
+ @objc var eventSender: KochavaTracker.KVAEventSender { get }
+}
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftdoc b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftdoc
index 2b99e41..bea02b1 100644
Binary files a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftdoc and b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftdoc differ
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftinterface b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
index ba97a56..d01f775 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
@@ -1,6 +1,7 @@
// swift-interface-format-version: 1.0
-// swift-compiler-version: Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
+// swift-compiler-version: Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
// swift-module-flags: -target x86_64-apple-ios13.1-macabi -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name KochavaTracker
+// swift-module-flags-ignorable: -enable-bare-slash-regex
import AVFoundation
import AdServices
import AdSupport
@@ -17,7 +18,7 @@ import UIKit
import UserNotifications
import WebKit
import _Concurrency
-import iAd
+import _StringProcessing
@_hasMissingDesignatedInitializers @objc(KVAEventType) final public class KVAEventType : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
@objc public static let achievement: KochavaTracker.KVAEventType
@objc public static let adClick: KochavaTracker.KVAEventType
@@ -47,21 +48,27 @@ import iAd
@objc final public let nameString: Swift.String
@objc deinit
}
-@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider {
+@_inheritsConvenienceInitializers @objc(KVAEvent) final public class KVAEvent : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetTransactionServiceLocallyBoolPropertyProvider, KochavaCore.KVANetTransactionSubURLIdStringMethodProvider, KochavaCore.KVANetworkingSetterProvider {
@objc override required dynamic public init()
- public init(type: KochavaTracker.KVAEventType)
+ @objc(initWithType:) public init(type: KochavaTracker.KVAEventType)
+ @available(*, deprecated, renamed: "init(type:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]")
@objc(eventWithType:) public static func event(withType type: KochavaTracker.KVAEventType) -> Self
- convenience public init(typeNameString: Swift.String)
+ @objc(initWithTypeNameString:) convenience public init(typeNameString: Swift.String)
+ @available(*, deprecated, renamed: "init(typeNameString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]")
@objc(eventWithTypeNameString:) public static func event(withTypeNameString typeNameString: Swift.String) -> Self
public static func kva_from(_ object: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
@objc override final public var description: Swift.String {
@objc get
}
+ final public func execute()
@objc final public func send()
- @objc(sendWithSenderArray:) final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendWithSenderArray:) final public func send(senderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "send(senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func send(senderArray:) instead.")
+ @nonobjc final public func send(withSenderArray senderProviderArray: [KochavaTracker.KVAEventSenderProvider]?)
@objc final public func eventNameString() -> Swift.String
- @objc(valueObjectForPropertyIdentifierString:) final public func valueObject(forPropertyIdentifierString propertyIdentifierString: Swift.String?) -> Swift.AnyObject?
+ @objc(valueObjectForPropertyIdentifier:) final public func valueObject(forPropertyIdentifier propertyIdentifier: KochavaTracker.KVAEvent.PropertyIdentifier?) -> Swift.AnyObject?
+ public typealias PropertyIdentifier = Swift.String
@objc final public func subURLIdString() -> Swift.String?
final public var mutator: KochavaCore.KVAMutator {
get
@@ -69,8 +76,9 @@ import iAd
@objc final public var eventType: KochavaTracker.KVAEventType {
get
}
- @objc final public var sendDispatchBool: Swift.Bool
- @objc final public var sendPrintLogMessageBool: Swift.Bool
+ @objc weak final public var networking: KochavaCore.KVANetworking?
+ @objc final public var sendAsyncBool: Swift.Bool
+ @objc final public var sendLogMessagePrintBool: Swift.Bool
@objc final public var serviceLocallyBool: Swift.Bool {
@objc get
@objc set(serviceLocallyBool)
@@ -99,7 +107,10 @@ import iAd
@objc final public var contentIdString: Swift.String?
@objc final public var contentTypeString: Swift.String?
@objc final public var currencyString: Swift.String?
- @objc final public var customEventNameString: Swift.String?
+ @objc final public var customEventName: KochavaTracker.KVAEvent.CustomEventName?
+ @available(*, deprecated, renamed: "customEventName")
+ @objc final public var customEventNameString: KochavaTracker.KVAEvent.CustomEventName?
+ public typealias CustomEventName = Swift.String
@objc final public var date: Foundation.Date?
@objc final public var dateString: Swift.String?
@objc final public var descriptionString: Swift.String?
@@ -155,18 +166,23 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
final public func invalidate()
+ @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @objc get
+ @objc set(conversion)
+ }
final public var mutator: KochavaCore.KVAMutator {
get
}
- @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetwork.KVAAdNetworkDidRegisterAppForAttributionBlock? {
+ @objc final public var closure_didRegisterAppForAttribution: KochavaTracker.KVAAdNetwork.Closure_DidRegisterAppForAttribution? {
@objc get
- @objc set(didRegisterAppForAttributionBlock)
+ @objc set(closure_didRegisterAppForAttribution)
}
- public typealias KVAAdNetworkDidRegisterAppForAttributionBlock = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
- @objc final public var conversion: KochavaTracker.KVAAdNetworkConversion {
+ @available(*, deprecated, renamed: "closure_didRegisterAppForAttribution")
+ @objc final public var didRegisterAppForAttributionBlock: KochavaTracker.KVAAdNetworkDidRegisterAppForAttributionBlock? {
@objc get
- @objc set(conversion)
+ @objc set(didRegisterAppForAttributionBlock)
}
+ public typealias Closure_DidRegisterAppForAttribution = (_ adNetwork: KochavaTracker.KVAAdNetwork) -> Swift.Void
@objc deinit
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAppLimitAdTracking) final public class KVAAppLimitAdTracking : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
@@ -219,8 +235,11 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
- @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(withCompletionHandler completionHandler: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
final public func invalidate()
+ @objc(retrieveResultWithCompletionHandler:) final public func retrieveResult(closure_didComplete: @escaping (_ result: KochavaTracker.KVAAttributionResult) -> Swift.Void)
+ @objc final public var result: KochavaTracker.KVAAttributionResult {
+ @objc get
+ }
final public var mutator: KochavaCore.KVAMutator {
get
}
@@ -233,9 +252,6 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
@objc get
@objc set(retrieveResultBool)
}
- @objc final public var result: KochavaTracker.KVAAttributionResult {
- @objc get
- }
@objc deinit
}
@_hasMissingDesignatedInitializers @objc(KVAAttributionResult) final public class KVAAttributionResult : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
@@ -262,25 +278,40 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVACustomIdentifiers.Name, identifier: KochavaTracker.KVACustomIdentifiers.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.")
@objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
final public func invalidate()
final public var mutator: KochavaCore.KVAMutator {
get
}
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
@objc deinit
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
- @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
- @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
- @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
- @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeeplink) final public class KVADeeplink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(processWithURL:closure_didComplete:) public static func process(url: Foundation.URL?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:")
+ @objc(processWithURL:completionHandler:) public static func process(withURL url: Foundation.URL?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:processor:closure_didComplete:) public static func process(url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:")
+ @objc(processWithURL:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @objc(processWithURL:timeoutTimeInterval:processor:closure_didComplete:) public static func process(url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
+ @available(*, deprecated, renamed: "process(url:timeoutTimeInterval:processor:closure_didComplete:)", message: "Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:")
+ @objc(processWithURL:timeoutTimeInterval:processor:completionHandler:) public static func process(withURL url: Foundation.URL?, timeoutTimeInterval: Foundation.TimeInterval, processor: KochavaTracker.KVADeeplinksProcessorProvider?, completionHandler: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
public static func kva_from(_ object: Any?) -> Self?
@objc(kva_asForContext:) final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
@objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
+ public typealias Closure_Process_DidComplete = (_ deeplink: KochavaTracker.KVADeeplink) -> Swift.Void
final public var mutator: KochavaCore.KVAMutator {
get
}
@objc final public var urlString: Swift.String?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
@objc final public var destinationString: Swift.String?
@objc final public var rawDictionary: [Swift.AnyHashable : Any]? {
@objc get
@@ -289,7 +320,7 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
@objc deinit
}
@objc public protocol KVADeeplinksProcessor {
- @objc(processDeeplink:timeoutTimeInterval:completionHandler:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
}
@objc public protocol KVADeeplinksProcessorProvider {
@objc var deeplinksProcessor: KochavaTracker.KVADeeplinksProcessor? { get }
@@ -301,11 +332,14 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- @objc(processDeeplink:timeoutTimeInterval:completionHandler:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, completionHandler: KochavaTracker.KVADeeplinkProcessCompletionHandler?)
final public func invalidate()
+ @objc(augmentDeferredPrefetchWithName:identifier:) final public func augmentDeferredPrefetch(name: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchName, identifier: KochavaTracker.KVADeeplinks.AugmentDeferredPrefetchIdentifier)
+ @objc(processDeeplink:timeoutTimeInterval:closure_didComplete:) final public func process(deeplink: KochavaTracker.KVADeeplink, timeoutTimeInterval: Foundation.TimeInterval, closure_didComplete: KochavaTracker.KVADeeplink.Closure_Process_DidComplete?)
final public var mutator: KochavaCore.KVAMutator {
get
}
+ public typealias AugmentDeferredPrefetchName = Swift.String
+ public typealias AugmentDeferredPrefetchIdentifier = Swift.String
@objc deinit
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVADeviceId) final public class KVADeviceId : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
@@ -329,8 +363,8 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- @objc final public func send(event: KochavaTracker.KVAEvent)
final public func invalidate()
+ @objc final public func send(event: KochavaTracker.KVAEvent)
final public var mutator: KochavaCore.KVAMutator {
get
}
@@ -346,28 +380,36 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
final public var mutator: KochavaCore.KVAMutator {
get
}
- @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversion.KVAAdNetworkConversionDidUpdateValueBlock? {
+ @objc final public var closure_didUpdatePostbackValue: KochavaTracker.KVAAdNetworkConversion.Closure_DidUpdatePostbackValue? {
+ @objc get
+ @objc set(closure_didUpdatePostbackValue)
+ }
+ @available(*, deprecated, renamed: "closure_didUpdatePostbackValue")
+ @objc final public var didUpdateValueBlock: KochavaTracker.KVAAdNetworkConversionDidUpdateValueBlock? {
@objc get
@objc set(didUpdateValueBlock)
}
- public typealias KVAAdNetworkConversionDidUpdateValueBlock = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
+ public typealias Closure_DidUpdatePostbackValue = (_ conversion: KochavaTracker.KVAAdNetworkConversion, _ result: KochavaTracker.KVAAdNetworkConversionResult) -> Swift.Void
@objc final public var result: KochavaTracker.KVAAdNetworkConversionResult {
@objc get
}
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
- @objc deinit
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAIdentityLink) final public class KVAIdentityLink : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
public static func kva_from(_ object: Any?) -> Self?
public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- final public func start()
+ @objc(registerWithName:identifier:) final public func register(name: KochavaTracker.KVAIdentityLink.Name, identifier: KochavaTracker.KVAIdentityLink.Identifier)
+ @available(*, deprecated, renamed: "register(name:identifier:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.")
@objc(registerWithNameString:identifierString:) final public func register(withNameString nameString: Swift.String, identifierString: Swift.String)
final public func invalidate()
final public var mutator: KochavaCore.KVAMutator {
get
}
+ public typealias Name = Swift.String
+ public typealias Identifier = Swift.String
+ @objc deinit
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAInstall) final public class KVAInstall : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
public static func kva_from(_ object: Any?) -> Self?
@@ -387,41 +429,6 @@ extension KochavaTracker.KVAEvent : JavaScriptCore.JSExport {
}
extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAPrivacy) final public class KVAPrivacy : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaTracker.KVAPrivacyProfileRegistrar {
- public static func kva_from(_ object: Any?) -> Self?
- public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
- final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
- final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
- final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- @objc(registerProfile:) final public func register(profile: KochavaTracker.KVAPrivacyProfile)
- @objc(setEnabledBoolForProfileNameString:enabledBool:) final public func setEnabledBool(forProfileNameString profileNameString: Swift.String, enabledBool: Swift.Bool)
- final public func invalidate()
- final public var mutator: KochavaCore.KVAMutator {
- get
- }
- @objc deinit
-}
-@_hasMissingDesignatedInitializers @objc(KVAPrivacyProfile) final public class KVAPrivacyProfile : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
- @objc(registerWithNameString:payloadKeyStringArray:) public static func register(withNameString nameString: Swift.String, payloadKeyStringArray: [Swift.String]?)
- @objc(registerWithNameString:payloadKeyStringArray:registrarArray:) public static func register(withNameString nameString: Swift.String, payloadKeyStringArray: [Swift.String]?, registrarArray: [KochavaTracker.KVAPrivacyProfileRegistrarProvider]?)
- @objc(registerWithNameString:payloadKeyStringArray:payloadIdStringArray:registrarArray:) public static func register(withNameString nameString: Swift.String, payloadKeyStringArray: [Swift.String]?, payloadIdStringArray: [Swift.String]?, registrarArray: [KochavaTracker.KVAPrivacyProfileRegistrarProvider]?)
- public static func kva_from(_ object: Any?) -> Self?
- final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
- @objc override final public func isEqual(_ object: Any?) -> Swift.Bool
- final public var mutator: KochavaCore.KVAMutator {
- get
- }
- @objc final public let nameString: Swift.String
- @objc final public let payloadKeyStringArray: [Swift.String]?
- @objc final public let payloadIdStringArray: [Swift.String]?
- @objc deinit
-}
-@objc public protocol KVAPrivacyProfileRegistrar {
- @objc(registerProfile:) func register(profile: KochavaTracker.KVAPrivacyProfile)
-}
-@objc public protocol KVAPrivacyProfileRegistrarProvider {
- @objc var privacyProfileRegistrar: KochavaTracker.KVAPrivacyProfileRegistrar { get }
-}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVAAdNetworkConversionResult) final public class KVAAdNetworkConversionResult : ObjectiveC.NSObject, Foundation.NSCopying, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAMutable {
@objc final public func copy(with zone: ObjectiveC.NSZone? = nil) -> Any
@objc(kva_from:) public static func kva_from(_ object: Any?) -> Self?
@@ -431,15 +438,23 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public var mutator: KochavaCore.KVAMutator {
get
}
+ @available(iOS 16.0, iOSApplicationExtension 16.0, *)
+ @objc final public var coarseValue: StoreKit.SKAdNetwork.CoarseConversionValue? {
+ @objc get
+ }
+ @objc final public var error: Swift.Error? {
+ @objc get
+ }
@objc final public var modelString: Swift.String? {
@objc get
}
- final public var translatedValueInt: Swift.Int? {
+ final public var translatedValueInt: KochavaTracker.KVAAdNetworkConversionResult.TranslatedValueInt? {
get
}
@objc final public var translatedValueIntNumber: Foundation.NSNumber? {
@objc get
}
+ public typealias TranslatedValueInt = Swift.Int
@objc final public var rawValueNumber: Foundation.NSNumber? {
@objc get
}
@@ -453,8 +468,8 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
- @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
final public func invalidate()
+ @objc final public func register(token: KochavaTracker.KVAPushNotificationsToken)
final public var mutator: KochavaCore.KVAMutator {
get
}
@@ -478,19 +493,29 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public let instanceCreatedDate: Foundation.Date
public static let startSequenceDidCompleteNotificationName: Foundation.Notification.Name
}
-@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAFromProtocol {
- @objc(registerWithData:) public static func register(withData deviceTokenData: Foundation.Data)
- @objc(registerWithDataHexString:) public static func register(withDataHexString deviceTokenDataHexString: Swift.String)
- @objc(registerWithData:registrarArray:) public static func register(withData deviceTokenData: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
- @objc(registerWithDataHexString:registrarArray:) public static func register(withDataHexString deviceTokenDataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+@_hasMissingDesignatedInitializers @objc(KVAPushNotificationsToken) final public class KVAPushNotificationsToken : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAExecutable, KochavaCore.KVAFromProtocol, KochavaCore.KVANetworkingSetterProvider {
+ @objc(registerWithData:) public static func register(data: Foundation.Data)
+ @available(*, deprecated, renamed: "register(data:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:) instead.")
+ public static func register(withData data: Foundation.Data)
+ @objc(registerWithData:registrarArray:) public static func register(data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(data:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(data:registrarArray:) instead.")
+ public static func register(withData data: Foundation.Data, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @objc(registerWithDataHexString:) public static func register(dataHexString: Swift.String)
+ @available(*, deprecated, renamed: "register(dataHexString:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String)
+ @objc(registerWithDataHexString:registrarArray:) public static func register(dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
+ @available(*, deprecated, renamed: "register(dataHexString:registrarArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func register(dataHexString:registrarArray:) instead.")
+ public static func register(withDataHexString dataHexString: Swift.String, registrarArray: [KochavaTracker.KVAPushNotificationsTokenRegistrarProvider]?)
public static func kva_from(_ object: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
@objc override final public func isEqual(_ object: Any?) -> Swift.Bool
+ final public func execute()
final public var mutator: KochavaCore.KVAMutator {
get
}
@objc final public let data: Foundation.Data?
@objc final public let providedDate: Foundation.Date?
+ @objc weak final public var networking: KochavaCore.KVANetworking?
@objc deinit
}
@objc public protocol KVAPushNotificationsTokenRegistrar {
@@ -499,7 +524,7 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc public protocol KVAPushNotificationsTokenRegistrarProvider {
@objc var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar { get }
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaTracker.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider {
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATracker) final public class KVATracker : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaTracker.KVADeeplinksProcessorProvider, KochavaTracker.KVAEventSenderProvider, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAInvalidatableWithOptions, KochavaCore.KVAMutable, KochavaCore.KVAPrivacyProfileRegistrarProvider, KochavaTracker.KVAPushNotificationsTokenRegistrarProvider, KochavaCore.KVASharedPropertyProvider, KochavaCore.KVAStartable, KochavaCore.KVAStartableWithOptions, KochavaCore.KVAStoppable, KochavaCore.KVAStoppableWithOptions {
@objc public static var shared: KochavaTracker.KVATracker {
@objc get
}
@@ -510,8 +535,10 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc get
}
@objc override convenience dynamic public init()
- @objc(initWithStorageIdString:) required public init(storageIdString: Swift.String?)
+ @objc(initWithStorageIdentifier:) required public init(storageIdentifier: KochavaCore.KVANetworking.StorageIdentifier?)
+ @available(*, deprecated, renamed: "init()", message: "Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.")
@objc(tracker) public static func tracker() -> Self
+ @available(*, deprecated, renamed: "init(storageIdentifier:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.")
@objc(trackerWithStorageIdString:) public static func tracker(withStorageIdString storageIdString: Swift.String?) -> Self
@objc deinit
public static func kva_from(_ object: Any?) -> Self?
@@ -522,13 +549,15 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc(startWithAppGUIDString:) final public func start(withAppGUIDString appGUIDString: Swift.String)
@objc(startWithPartnerNameString:) final public func start(withPartnerNameString partnerNameString: Swift.String)
@objc final public func start()
+ @objc final public func start(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func stop()
+ @objc final public func stop(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
+ @objc final public func invalidate()
+ @objc final public func invalidate(logMessagePrintBool: Swift.Bool, asyncBool: Swift.Bool)
@objc override final public var description: Swift.String {
@objc get
}
- @objc(executeAdvancedInstructionWithIdentifierString:valueObject:) final public func executeAdvancedInstruction(identifierString: Swift.String, valueObject: Any?)
- @objc final public func invalidate()
- @objc final public func invalidate(asyncBool: Swift.Bool, printLogMessageBool: Swift.Bool)
- @objc final public var adNetwork: KochavaTracker.KVAAdNetwork? {
+ @objc final public var adNetwork: KochavaTracker.KVAAdNetwork {
@objc get
}
@objc final public var appLimitAdTracking: KochavaTracker.KVAAppLimitAdTracking {
@@ -543,9 +572,6 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var config: KochavaTracker.KVATrackerConfig {
@objc get
}
- @objc final public var consent: KochavaCore.KVAConsent {
- @objc get
- }
@objc final public var customIdentifiers: KochavaTracker.KVACustomIdentifiers {
@objc get
}
@@ -570,19 +596,21 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var networking: KochavaCore.KVANetworking {
@objc get
}
- @objc final public var privacy: KochavaTracker.KVAPrivacy {
- @objc get
- }
@objc final public var pushNotifications: KochavaTracker.KVAPushNotifications {
@objc get
}
+ @available(*, deprecated, renamed: "appLimitAdTracking.bool", message: "Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.")
@objc final public var appLimitAdTrackingBool: Swift.Bool {
@objc get
@objc set(appLimitAdTrackingBool)
}
+ @available(*, deprecated, renamed: "deviceId.string", message: "Convenience wrapper function deprecated. Use var deviceId.string instead.")
@objc final public var deviceIdString: Swift.String? {
@objc get
}
+ @objc final public var privacy: KochavaCore.KVAPrivacy {
+ @objc get
+ }
@objc final public var sleepBool: Swift.Bool {
@objc get
@objc set(sleepBool)
@@ -593,7 +621,7 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var eventSender: KochavaTracker.KVAEventSender {
@objc get
}
- @objc final public var privacyProfileRegistrar: KochavaTracker.KVAPrivacyProfileRegistrar {
+ @objc final public var privacyProfileRegistrar: KochavaCore.KVAPrivacyProfileRegistrar {
@objc get
}
@objc final public var pushNotificationsTokenRegistrar: KochavaTracker.KVAPushNotificationsTokenRegistrar {
@@ -602,6 +630,11 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public var mutator: KochavaCore.KVAMutator {
get
}
+ @objc public static var sharedStorageIdentifier: KochavaCore.KVANetworking.StorageIdentifier? {
+ @objc get
+ @objc set(sharedStorageIdentifier)
+ }
+ @available(*, deprecated, renamed: "sharedStorageIdentifier", message: "Use sharedStorageIdentifier instead.")
@objc public static var sharedStorageIdString: Swift.String? {
@objc get
@objc set(sharedStorageIdString)
@@ -609,7 +642,6 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
@objc final public var startedBool: Swift.Bool {
@objc get
}
- public static let willDeallocNotificationName: Foundation.Notification.Name
}
@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerConfig) final public class KVATrackerConfig : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAInvalidatable, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
public static func kva_from(_ object: Any?) -> Self?
@@ -619,151 +651,189 @@ extension KochavaTracker.KVATracker : JavaScriptCore.JSExport {
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
final public func start()
final public func invalidate()
+ @objc(retrieveWithClosure_didComplete:) final public func retrieve(closure_didComplete: @escaping KochavaTracker.KVATrackerConfig.Closure_Retrieve_DidComplete)
+ public typealias Closure_Retrieve_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
final public var mutator: KochavaCore.KVAMutator {
get
}
+ @objc final public var closure_didComplete: KochavaTracker.KVATrackerConfig.Closure_DidComplete? {
+ @objc get
+ @objc set(closure_didComplete)
+ }
+ public typealias Closure_DidComplete = (_ config: KochavaTracker.KVATrackerConfig) -> Swift.Void
+ @objc final public var consentGDPRAppliesBool: Swift.Bool {
+ @objc get
+ }
+ @objc final public var collectedBool: Swift.Bool {
+ @objc get
+ }
@objc deinit
}
-@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable {
+extension Foundation.Date {
+ public func kva_sendDateString(fromRequestBodyDictionary requestBodyDictionary: [Swift.AnyHashable : Any]?) -> Swift.String
+}
+@available(iOS 16.0, *)
+extension StoreKit.SKAdNetwork.CoarseConversionValue {
+ @available(iOS 16.0, *)
+ public func kva_identifier() -> Swift.String
+ public static func kva_from(_ object: Any?) -> StoreKit.SKAdNetwork.CoarseConversionValue?
+}
+@_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objc(KVATrackerDatapoints) final public class KVATrackerDatapoints : ObjectiveC.NSObject, KochavaCore.KVAAsForContextProtocol, KochavaCore.KVAConfigureWithProtocol, KochavaCore.KVAFromProtocol, KochavaCore.KVAFromWithInitializedObjectProtocol, KochavaCore.KVAKeyable, KochavaCore.KVAMutable, KochavaCore.KVAStartable {
public static func kva_from(_ object: Any?) -> Self?
public static func kva_from(_ object: Any?, initializedObject: Any?) -> Self?
final public func kva_as(forContext context: KochavaCore.KVAContext?) -> Swift.AnyObject?
final public func key(forContext context: KochavaCore.KVAContext?) -> Swift.AnyHashable?
final public func kva_configure(with object: Any?, context: KochavaCore.KVAContext?)
- final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public func start()
+ final public var appMainBundleDisplayNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var appMainBundleIdentifierStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var appMainBundleShortVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appMainBundleVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var appMainBundleVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var appStoreReceiptDataAdapter: KochavaCore.KVAStringAdapter {
+ final public var appStoreReceiptDataAdapter: KochavaCore.KVAAdapter {
get
}
- final public var architectureStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var architectureStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAIntAdapter {
+ final public var batteryLevelPercentageIntAdapter: KochavaCore.KVAAdapter {
get
}
- final public var batteryStateStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var batteryStateStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var bootDateAdapter: KochavaCore.KVADateAdapter {
+ final public var bootDateAdapter: KochavaCore.KVAAdapter {
get
}
- final public var carrierNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var carrierNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var cellularTypeStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var cellularTypeStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var currentDateAdapter: KochavaCore.KVADateAdapter {
+ final public var currentDateAdapter: KochavaCore.KVAAdapter {
get
}
- final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var currentLocaleIdentifierStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVABoolAdapter {
+ final public var deviceLimitAdTrackingBoolAdapter: KochavaCore.KVAAdapter {
get
}
final public func deviceLimitAdTrackingBool() -> Swift.Bool
- final public var deviceModelStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var deviceModelStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var deviceOrientationStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var deviceOrientationStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var deviceSystemNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var deviceSystemNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var firstPreferredLanguageStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var hardwareMachineModelIdStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var iabUSPrivacyStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var iabUSPrivacyStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var idctDataAdapter: KochavaCore.KVADataAdapter {
+ final public var idctDataAdapter: KochavaCore.KVAAdapter {
get
}
final public func idfaString() -> Swift.String?
- final public var idfaStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var idfaStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var idfvStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var idfvStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var ipAddressStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var ipAddressStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var localTimezoneNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var localTimezoneNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVANumberAdapter {
+ final public var mainScreenBrightnessNumberAdapter: KochavaCore.KVAAdapter {
get
}
- final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAIntAdapter {
+ final public var mainScreenNativeBoundsHeightIntAdapter: KochavaCore.KVAAdapter {
get
}
- final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAIntAdapter {
+ final public var mainScreenNativeBoundsWidthIntAdapter: KochavaCore.KVAAdapter {
get
}
- final public var minimumOSVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var minimumOSVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
final public var mutator: KochavaCore.KVAMutator {
get
}
- final public var networkConnectionTypeStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var networkConnectionTypeStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var osGenuineBoolAdapter: KochavaCore.KVABoolAdapter {
+ final public var osGenuineBoolAdapter: KochavaCore.KVAAdapter {
get
}
- final public var osVersionStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var osVersionStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var platformNameStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var platformNameStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var sdkGeneratedUserAgentStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var userAgentStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var userAgentStringAdapter: KochavaCore.KVAAdapter {
get
}
- final public var volumeNumberAdapter: KochavaCore.KVANumberAdapter {
+ final public var volumeNumberAdapter: KochavaCore.KVAAdapter {
get
}
- final public var vpnBoolAdapter: KochavaCore.KVABoolAdapter {
+ final public var vpnBoolAdapter: KochavaCore.KVAAdapter {
get
}
- final public var webViewUserAgentStringAdapter: KochavaCore.KVAStringAdapter {
+ final public var webViewUserAgentStringAdapter: KochavaCore.KVAAdapter {
get
}
@objc deinit
}
extension KochavaTracker.KVAEvent {
- @objc(sendCustomWithNameString:) public static func sendCustom(withNameString customEventNameString: Swift.String)
- @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString customEventNameString: Swift.String, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
- @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?)
- @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
- @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoString: Swift.String?)
- @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString customEventNameString: Swift.String, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
- @objc(initCustomWithNameString:) convenience dynamic public init(customWithNameString customEventNameString: Swift.String)
- @objc(customEventWithNameString:) public static func customEvent(withNameString customEventNameString: Swift.String) -> Self
- @objc(initCustomWithNameString:infoDictionary:) convenience dynamic public init(customWithNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?)
- @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString customEventNameString: Swift.String, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
- @objc(initCustomWithNameString:infoString:) convenience dynamic public init(customWithNameString customEventNameString: Swift.String, infoString: Swift.String?)
- @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString customEventNameString: Swift.String, infoString: Swift.String?) -> Self
+ @objc(sendCustomWithEventName:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "sendCustom(eventName:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.")
+ @objc(sendCustomWithNameString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @objc(sendCustomWithEventName:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.")
+ @objc(sendCustomWithNameString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoDictionary:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @objc(sendCustomWithEventName:infoDictionary:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoDictionary:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoDictionary:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(sendCustomWithEventName:infoString:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.")
+ @objc(sendCustomWithNameString:infoString:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @objc(sendCustomWithEventName:infoString:senderArray:) public static func sendCustom(eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @available(*, deprecated, renamed: "sendCustom(eventName:infoString:senderArray:)", message: "Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.")
+ @objc(sendCustomWithNameString:infoString:senderArray:) public static func sendCustom(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?, senderArray: [KochavaTracker.KVAEventSenderProvider]?)
+ @objc(initCustomWithEventName:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName)
+ @available(*, deprecated, renamed: "init(customWithEventName:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]")
+ @objc(customEventWithNameString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName) -> Self
+ @objc(initCustomWithEventName:infoDictionary:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoDictionary:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]")
+ @objc(customEventWithNameString:infoDictionary:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoDictionary: [Swift.AnyHashable : Any]?) -> Self
+ @objc(initCustomWithEventName:infoString:) convenience dynamic public init(customWithEventName eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?)
+ @available(*, deprecated, renamed: "init(customWithEventName:infoString:)", message: "Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]")
+ @objc(customEventWithNameString:infoString:) public static func customEvent(withNameString eventName: KochavaTracker.KVAEvent.CustomEventName, infoString: Swift.String?) -> Self
}
@_inheritsConvenienceInitializers @objc(KVATrackerProduct) final public class KVATrackerProduct : ObjectiveC.NSObject, KochavaCore.KVASharedPropertyProvider {
@objc public static let shared: KochavaCore.KVAProduct
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/module.modulemap b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/module.modulemap
index 363dd10..b58301e 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/module.modulemap
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Modules/module.modulemap
@@ -6,6 +6,6 @@ framework module KochavaTracker {
}
module KochavaTracker.Swift {
- header "KochavaTracker-Swift.h"
- requires objc
+ header "KochavaTracker-Swift.h"
+ requires objc
}
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Resources/Info.plist b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Resources/Info.plist
index da24714..712fb2c 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Resources/Info.plist
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/Resources/Info.plist
@@ -17,7 +17,7 @@
CFBundlePackageType
FMWK
CFBundleShortVersionString
- 6.1.1
+ 7.0.0
CFBundleSupportedPlatforms
MacOSX
@@ -27,26 +27,27 @@
DTCompiler
com.apple.compilers.llvm.clang.1_0
DTPlatformBuild
- 13E500a
+ 14B47b
DTPlatformName
macosx
DTPlatformVersion
- 12.3
+ 13.0
DTSDKBuild
- 21E226
+ 22A372
DTSDKName
- macosx12.3
+ macosx13.0
DTXcode
- 1331
+ 1410
DTXcodeBuild
- 13E500a
+ 14B47b
KVABuildDateString
- 2022-10-31T11:38:23-0700
+ 2023-03-08T21:08:25-0800
LSMinimumSystemVersion
10.15
UIDeviceFamily
2
+ 6
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/_CodeSignature/CodeResources b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/_CodeSignature/CodeResources
index c26ae63..3807ac8 100644
--- a/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/_CodeSignature/CodeResources
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-maccatalyst/KochavaTracker.framework/Versions/A/_CodeSignature/CodeResources
@@ -6,7 +6,7 @@
Resources/Info.plist
- qmdVH42fsCB4N//S6iuDYN219T8=
+ 8OHuy4/LjzIjGxMtx/Qm1ju4sJs=
files2
@@ -15,91 +15,119 @@
hash2
- hqE+ovfgjCErlzAcApNomDhFGwFJ19KXyJu/EHRlQc8=
+ A1JT5uXvdgYu01Sj4vkSfuJRGASFX3UV6rMyAzK/sXI=
Headers/KVAAdNetworkConversion.h
hash2
- 4S3P4dMA9OL1ZH4NaPdQ3DtMy5qFs4kfupvnNKaJrbI=
+ HvbHvqzgv8GDHBYqz4JOm7+2BE3wfaN4CbEziBiIn2A=
Headers/KVADeeplink.h
hash2
- NDhyFwvn53iwv/orVu4apRlqyFOJ5XpjYjB5/1mxLAc=
+ IRDMDdWy0bW6OF7IVV/Ewd2HmvuYUVP58FTaCgrOZQc=
Headers/KochavaTracker-Swift.h
hash2
- r28wfYGVgybfdzoahbtIDchPBRzybRL4Pr37TfTvB9Q=
+ 8Qyn1aHMy58OddZqH8QEuv36jmZIAYpcQI0CnLiPVxg=
Headers/KochavaTracker.h
hash2
- Nwsd9p8PdYGsXdpWnlt+zcZ5BiQ50hdH1JZUOYBGbb8=
+ 9NNIfzfl2KT5Ghx+wcolXYkv8hGV0yWvb77DZMSAAm8=
+
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.abi.json
+
+ hash2
+
+ 78205Zf5HQtgG8j22873qAq3mEvcolbHSB+25X3/iTg=
+
+
+ Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.private.swiftinterface
+
+ hash2
+
+ +UCaALZjpjIXi60y6xTmSjSphJ3UrcZzOtlm5r2/3HI=
Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftdoc
hash2
- LeosevV2FROF/sYY26igatzFD7UMmerpUFmA183u9jc=
+ VY9S9GhCHZaIvMxIwBOq7w+ymFl29EA3LVy/J4gt8Kk=
Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftinterface
hash2
- GV9RWMli7idYA6JdNpLDJQ2AuS1s7O/iYznWXSemdvw=
+ +UCaALZjpjIXi60y6xTmSjSphJ3UrcZzOtlm5r2/3HI=
Modules/KochavaTracker.swiftmodule/arm64-apple-ios-macabi.swiftmodule
hash2
- aYnARmE5pIe7WQCJFpL9G0utwgGU9idL9I2foS25mPo=
+ 9qst6iqrEB39qMkX4knli/OPSCvOCMg8O39GopqcEQU=
+
+
+ Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.abi.json
+
+ hash2
+
+ 78205Zf5HQtgG8j22873qAq3mEvcolbHSB+25X3/iTg=
+
+
+ Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.private.swiftinterface
+
+ hash2
+
+ pInYu+2upCzIISkVDxq5RijUPKybF7hvTryGq1drevk=
Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftdoc
hash2
- E3hjwM57zBVDscokt/pMTaYKCzniX8M44kHEwTiepFc=
+ y2x8J/IHDiA8kho7JdFl+s4Q8GnRKk/YNaSsN81weG8=
Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftinterface
hash2
- vFg1ojyf8wWmQE5HJjRCyPqpKm1D+Pj7MlIsWDSD3rE=
+ pInYu+2upCzIISkVDxq5RijUPKybF7hvTryGq1drevk=
Modules/KochavaTracker.swiftmodule/x86_64-apple-ios-macabi.swiftmodule
hash2
- TBtiW4XfkMINOA+EhMebxkZW1Z3ZI1UnoN4H51jkTzE=
+ Dcv2jYqwg5zWU8wJSxvqCTXvg/55Jar5tG7YpTOtLLI=
Modules/module.modulemap
hash2
- hmjiZZXjE8YJGd3D1XP1bGajD3Bx9KaMg1K6c8dXhxg=
+ PVF4hEB09E+RftHxTVBy0DCtPTii5k/JiXbs7JFOd9w=
Resources/Info.plist
hash2
- Z4vZiL9SqydAqF07lbm1Xn4+8s4PtxzzhZcd0quUA5Y=
+ dQsIwmsLxt2sTiUQESjqzneIhiz2KBjF+t4kg4+9nNU=
diff --git a/KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KVAAdNetwork.h b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetwork.h
similarity index 55%
rename from KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KVAAdNetwork.h
rename to KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetwork.h
index 6ddf972..7f3dedb 100644
--- a/KochavaTracker.xcframework/watchos-arm64_32_armv7k/KochavaTracker.framework/Headers/KVAAdNetwork.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetwork.h
@@ -1,9 +1,9 @@
//
// KVAAdNetwork.h
-// KochavaAdNetwork
+// KochavaTracker
//
// Created by John Bushnell on 8/20/20.
-// Copyright © 2020 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2020 - 2023 Kochava, Inc. All rights reserved.
//
@@ -33,7 +33,7 @@
typedef void (^ KVAAdNetworkDidRegisterAppForAttributionBlock)
(
KVAAdNetwork * _Nonnull adNetwork
-);
+ ) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVAAdNetwork.Closure_DidRegisterAppForAttribution'. Use 'KVAAdNetwork.Closure_DidRegisterAppForAttribution' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull adNetwork) = ^(KVAAdNetwork * _Nonnull adNetwork) { /* ... */ };");
diff --git a/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
new file mode 100644
index 0000000..66ae9c8
--- /dev/null
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVAAdNetworkConversion.h
@@ -0,0 +1,47 @@
+//
+// KVAAdNetworkConversion.h
+// KochavaTracker
+//
+// Created by John Bushnell on 8/20/20.
+// Copyright © 2020 - 2023 Kochava, Inc. All rights reserved.
+//
+
+
+
+#ifndef KVAAdNetworkConversion_h
+#define KVAAdNetworkConversion_h
+
+
+
+#pragma mark - CLASS
+
+
+
+@class KVAAdNetworkConversion;
+@class KVAAdNetworkConversionResult;
+
+
+
+#pragma mark - Typealiases
+
+
+
+/*!
+ @typedef KVAAdNetworkConversionDidUpdateValueBlock
+
+ @brief A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+
+ @discussion Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+ */
+typedef void (^ KVAAdNetworkConversionDidUpdateValueBlock)
+(
+ KVAAdNetworkConversion * _Nonnull conversion,
+ KVAAdNetworkConversionResult * _Nonnull result
+ ) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue'. Use 'KVAAdNetworkConversion.Closure_DidUpdatePostbackValue' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) = ^(KVAAdNetworkConversion * _Nonnull conversion, KVAAdNetworkConversionResult * _Nonnull result) { /* ... */ };");
+
+
+
+#endif
+
+
+
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVADeeplink.h b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVADeeplink.h
similarity index 50%
rename from KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVADeeplink.h
rename to KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVADeeplink.h
index 9769ba6..78a3763 100644
--- a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KVADeeplink.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KVADeeplink.h
@@ -3,7 +3,7 @@
// KochavaTracker
//
// Created by John Bushnell on 10/14/19.
-// Copyright © 2019 - 2022 Kochava, Inc. All rights reserved.
+// Copyright © 2019 - 2023 Kochava, Inc. All rights reserved.
//
@@ -33,7 +33,7 @@
typedef void (^ KVADeeplinkProcessCompletionHandler)
(
KVADeeplink * _Nonnull deeplink
-);
+) DEPRECATED_MSG_ATTRIBUTE("renamed to 'KVADeeplink.Closure_Process_DidComplete'. Use 'KVADeeplink.Closure_Process_DidComplete' instead. If in Objective-C then describe the closure through its low-level format instead. Example: void (^closure_process_didComplete)(KVADeeplink * _Nonnull deeplink) = ^(KVADeeplink * _Nonnull deeplink) { /* ... */ };");
diff --git a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KochavaTracker-Swift.h b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KochavaTracker-Swift.h
similarity index 68%
rename from KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KochavaTracker-Swift.h
rename to KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KochavaTracker-Swift.h
index 89df353..9129eb9 100644
--- a/KochavaTracker.xcframework/ios-arm64_armv7/KochavaTracker.framework/Headers/KochavaTracker-Swift.h
+++ b/KochavaTracker.xcframework/ios-arm64_x86_64-simulator/KochavaTracker.framework/Headers/KochavaTracker-Swift.h
@@ -1,6 +1,6 @@
#if 0
#elif defined(__arm64__) && __arm64__
-// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
+// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
#ifndef KOCHAVATRACKER_SWIFT_H
#define KOCHAVATRACKER_SWIFT_H
#pragma clang diagnostic push
@@ -23,11 +23,20 @@
# include
#endif
+#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
+#if defined(__OBJC__)
#include
+#endif
+#if defined(__cplusplus)
+#include
+#include
+#include
+#else
#include
#include
#include
+#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
@@ -183,9 +192,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
#endif
+#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
+#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
@@ -193,6 +204,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_EXTERN extern
# endif
#endif
+#if !defined(SWIFT_CALL)
+# define SWIFT_CALL __attribute__((swiftcall))
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT noexcept
+#endif
+#else
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT
+#endif
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_CXX_INT_DEFINED)
+#define SWIFT_CXX_INT_DEFINED
+namespace swift {
+using Int = ptrdiff_t;
+using UInt = size_t;
+}
+#endif
+#endif
+#if defined(__OBJC__)
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
@@ -200,11 +233,14 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
@import AppTrackingTransparency;
@import Foundation;
@import JavaScriptCore;
+@import KochavaCore;
@import ObjectiveC;
+@import StoreKit;
#endif
#import
+#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
@@ -212,6 +248,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
+#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
@@ -220,17 +257,21 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# pragma pop_macro("any")
#endif
+#if defined(__OBJC__)
@class KVAAdNetworkConversion;
/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
SWIFT_CLASS_NAMED("KVAAdNetwork")
@interface KVAAdNetwork : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
-/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didRegisterAppForAttributionBlock)(KVAAdNetwork * _Nonnull);
/// The current conversion information.
@property (nonatomic, strong) KVAAdNetworkConversion * _Nonnull conversion;
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull);
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkDidRegisterAppForAttributionBlock _Nullable didRegisterAppForAttributionBlock SWIFT_DEPRECATED_MSG("", "closure_didRegisterAppForAttribution");
@end
@class KVAAdNetworkConversionResult;
@@ -240,9 +281,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversion")
@interface KVAAdNetworkConversion : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A closure which is called when the SKAdNetwork updateConversionValue API has been called.
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didUpdateValueBlock)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+@property (nonatomic, copy) KVAAdNetworkConversionDidUpdateValueBlock _Nullable didUpdateValueBlock SWIFT_DEPRECATED_MSG("", "closure_didUpdatePostbackValue");
/// The current conversion result.
/// This object will mutate when the current result is updated. If you want a immutable picture then you should take a copy.
@property (nonatomic, strong) KVAAdNetworkConversionResult * _Nonnull result;
@@ -257,6 +301,14 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionEvent")
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
+
+/// A class which defines the parameters for the adnetwork conversion lock window.
+SWIFT_CLASS_NAMED("KVAAdNetworkConversionLockWindow")
+@interface KVAAdNetworkConversionLockWindow : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+@end
+
@class KVAContext;
@class NSString;
@class NSNumber;
@@ -268,9 +320,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionResult")
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
-/// Return the conversion value integer which is used with the SKAdNetwork updateConversionValue API.
+/// Return the conversion value integer which is used with the SKAdNetwork updatePostbackConversionValue API.
/// Apple currently restricts this value to 6-bits. This is a combination (OR) of the translated value (translatedValueIntNumber) with any extension interval value (extensionIntervalTranslatedValueInt.integerValue).
- (NSInteger)valueInt SWIFT_WARN_UNUSED_RESULT;
+/// The coarse value.
+@property (nonatomic, readonly) SKAdNetworkCoarseConversionValue _Nullable coarseValue SWIFT_AVAILABILITY(ios_app_extension,introduced=16.0) SWIFT_AVAILABILITY(ios,introduced=16.0);
+@property (nonatomic, readonly) NSError * _Nullable error;
/// A string which represents the model used for the conversion.
@property (nonatomic, readonly, copy) NSString * _Nullable modelString;
@property (nonatomic, readonly, strong) NSNumber * _Nullable translatedValueIntNumber;
@@ -302,9 +357,9 @@ SWIFT_CLASS_NAMED("KVAAppTrackingTransparency")
@interface KVAAppTrackingTransparency : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Notify that a request for tracking authorization did complete.
-/// \param authorizationStatus The provided authorization status.
+/// \param status The provided authorization status.
///
-- (void)authorizationDidCompleteWithStatus:(ATTrackingManagerAuthorizationStatus)authorizationStatus SWIFT_AVAILABILITY(ios_app_extension,introduced=14.0) SWIFT_AVAILABILITY(tvos,introduced=14.0) SWIFT_AVAILABILITY(maccatalyst,introduced=14.0) SWIFT_AVAILABILITY(macos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=14.0);
+- (void)authorizationDidCompleteWithStatus:(ATTrackingManagerAuthorizationStatus)status SWIFT_AVAILABILITY(ios_app_extension,introduced=14.0) SWIFT_AVAILABILITY(tvos,introduced=14.0) SWIFT_AVAILABILITY(maccatalyst,introduced=14.0) SWIFT_AVAILABILITY(macos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=14.0);
/// A boolean which indicates if the instance should automatically request tracking authorization.
/// Default true. Subject to server-based override. Also subject to enabledBool. See enabledBool.
@property (nonatomic) BOOL autoRequestTrackingAuthorizationBool;
@@ -328,22 +383,6 @@ SWIFT_CLASS_NAMED("KVAAppleSearchAds")
@end
-/// A feature which provides for attribution through Apple’s Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2")
-@interface KVAAppleSearchAdsMethod2 : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-/// Apple’s attribution as provided by Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2Attribution")
-@interface KVAAppleSearchAdsMethod2Attribution : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
/// A feature which provides for attribution through Apple’s Apple Search Ads method 3.
SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod3")
@interface KVAAppleSearchAdsMethod3 : NSObject
@@ -366,17 +405,17 @@ SWIFT_CLASS_NAMED("KVAAttribution")
@interface KVAAttribution : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Get the attribution result with a completion handler.
-/// \param completionHandler A completion handler to call once the result has been retrieved.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
///
-- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))completionHandler;
+- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))closure_didComplete;
+/// The current attribution result.
+/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(closure_didComplete:)
+@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
/// A closure which is called when attribution is retrieved.
@property (nonatomic, copy) void (^ _Nullable closure_didRetrieveResult)(KVAAttribution * _Nonnull, KVAAttributionResult * _Nonnull);
/// A boolean indicating if an attribution result should be retrieved.
-/// This boolean does not need to be set if you are using func retrieveResult(withCompletionHandler:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
+/// This boolean does not need to be set if you are using func retrieveResult(closure_didComplete:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
@property (nonatomic) BOOL retrieveResultBool;
-/// The current attribution result.
-/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(withCompletionHandler:)
-@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
@end
@@ -403,25 +442,47 @@ SWIFT_CLASS_NAMED("KVACustomIdentifiers")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Register a custom identifier.
/// In order to send a custom identifier it must be whitelisted on your account.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register a custom identifier.
+/// In order to send a custom identifier it must be whitelisted on your account.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@class NSURL;
@protocol KVADeeplinksProcessorProvider;
+@class KVANetworking;
/// A deeplink.
SWIFT_CLASS_NAMED("KVADeeplink")
-@interface KVADeeplink : NSObject
+@interface KVADeeplink : NSObject
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:", "processWithURL:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -429,7 +490,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:", "processWithURL:timeoutTimeInterval:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -437,7 +506,17 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:", "processWithURL:processor:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -447,12 +526,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:", "processWithURL:timeoutTimeInterval:processor:closure_didComplete:");
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
/// The deeplink url as provided by the operating system.
@property (nonatomic, copy) NSString * _Nullable urlString;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
/// The destination for the deeplink.
@property (nonatomic, copy) NSString * _Nullable destinationString;
/// A dictionary containing raw information about the deeplink.
@@ -467,9 +549,9 @@ SWIFT_PROTOCOL("_TtP14KochavaTracker21KVADeeplinksProcessor_")
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -478,14 +560,20 @@ SWIFT_CLASS_NAMED("KVADeeplinks")
@interface KVADeeplinks : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+/// Augment deferred prefetch.
+/// \param name The name for the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)augmentDeferredPrefetchWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
/// Process a deeplink.
/// \param deeplink An instance of KVADeeplink.
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -513,13 +601,21 @@ SWIFT_CLASS_NAMED("KVADeviceId")
/// The class KVAEvent provides a means of defining a post-install event, providing standardized parameters.
SWIFT_CLASS_NAMED("KVAEvent")
-@interface KVAEvent : NSObject
+@interface KVAEvent : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Create an event.
+/// The designated initializer.
+/// \param type An event type.
+///
+- (nonnull instancetype)initWithType:(KVAEventType * _Nonnull)type OBJC_DESIGNATED_INITIALIZER;
/// Create an event with a type— using modern Objective-C syntax.
-+ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]", "init(type:)");
+/// Create an event with a typeNameString.
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
+- (nonnull instancetype)initWithTypeNameString:(NSString * _Nonnull)typeNameString;
/// Create an event with a typeNameString— using modern Objective-C syntax.
-/// For TVML. This constructor exists because there doesn’t appear to be a way to export an enumeration using the JSExport system Apple provides.
-+ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT;
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
++ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]", "init(typeNameString:)");
/// Return a description of the instance.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// Send the event using the default KVAEventSenderProvider.
@@ -530,24 +626,27 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// Return a string representation of the name of the event.
/// a.k.a. “event_name”
- (NSString * _Nonnull)eventNameString SWIFT_WARN_UNUSED_RESULT;
-/// Return any valueObject for a given propertyIdentifierString.
-/// \param propertyIdentifierString A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
+/// Return any valueObject for a given propertyIdentifier.
+/// \param propertyIdentifier A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
///
-- (id _Nullable)valueObjectForPropertyIdentifierString:(NSString * _Nullable)propertyIdentifierString SWIFT_WARN_UNUSED_RESULT;
+- (id _Nullable)valueObjectForPropertyIdentifier:(NSString * _Nullable)propertyIdentifier SWIFT_WARN_UNUSED_RESULT;
- (NSString * _Nullable)subURLIdString SWIFT_WARN_UNUSED_RESULT;
/// A type for the event
/// Although these types are standardized, custom events are designated using type .custom.
@property (nonatomic, readonly, strong) KVAEventType * _Nonnull eventType;
-/// A boolean indicating if a dispatch should occur when the event is sent.
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
+/// A boolean indicating if an asynchronous dispatch should occur when the event is sent.
/// Default true. The default behavior dispatches the sending of an event to the default queue that should be used when sending the event (i.e. KVADispatchQueue.globalSerial). If it is known that you are already on the appropriate queue, you may set this to true to avoid an additional dispatch. This can have the effect of fine tuning behavior to ensure that related operations essentially occur atomically. It is important to not use this feature if you are not on the appropriate queue already.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendDispatchBool;
+@property (nonatomic) BOOL sendAsyncBool;
/// A boolean indicating if a LogMessage should be printed when the event is sent.
/// Default true. The default behavior prints a log message when the event is sent. The corresponding log message is presented as though the event was sent by a call from the host. This boolean can be set to false so that the event will be sent silently, and not appear as though it was sent by a call the host.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendPrintLogMessageBool;
+@property (nonatomic) BOOL sendLogMessagePrintBool;
/// A boolean which when set will cause the event to be serviced locally when sent.
/// When serviced locally the response for the request is provided locally and the request is post the event to the server is never made. In every other respect the effects are the same. AdNetwork conversion information is still calculated.
@property (nonatomic) BOOL serviceLocallyBool;
@@ -613,8 +712,9 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSString * _Nullable currencyString;
/// A property containing a custom event name string.
-/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventNameString property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
-@property (nonatomic, copy) NSString * _Nullable customEventNameString;
+/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventName property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
+@property (nonatomic, copy) NSString * _Nullable customEventName;
+@property (nonatomic, copy) NSString * _Nullable customEventNameString SWIFT_DEPRECATED_MSG("", "customEventName");
/// A property containing a date.
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSDate * _Nullable date;
@@ -736,76 +836,114 @@ SWIFT_CLASS_NAMED("KVAEvent")
@interface KVAEvent (SWIFT_EXTENSION(KochavaTracker))
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString;
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.", "sendCustomWithEventName:");
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.", "sendCustomWithEventName:senderArray:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.", "sendCustomWithEventName:infoDictionary:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.", "sendCustomWithEventName:infoDictionary:senderArray:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.", "sendCustomWithEventName:infoString:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.", "sendCustomWithEventName:infoString:senderArray:");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]", "init(customWithEventName:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]", "init(customWithEventName:infoDictionary:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]", "init(customWithEventName:infoString:)");
@end
@@ -849,7 +987,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType
/// An event type which signifies that consent was granted.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull consentGranted;)
+ (KVAEventType * _Nonnull)consentGranted SWIFT_WARN_UNUSED_RESULT;
-/// An event type which signifies that a customEventNameString will be supplied.
+/// An event type which signifies that a customEventName will be supplied.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull custom;)
+ (KVAEventType * _Nonnull)custom SWIFT_WARN_UNUSED_RESULT;
/// An event type which signifies that there was a deep link.
@@ -913,11 +1051,19 @@ SWIFT_CLASS_NAMED("KVAIdentityLink")
/// Register an identity link.
/// note:
/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register an identity link.
+/// note:
+/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@@ -930,79 +1076,6 @@ SWIFT_CLASS_NAMED("KVAInstall")
@property (nonatomic, readonly, copy) NSDate * _Nullable didStartFirstDate;
@end
-@class KVAPrivacyProfile;
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker26KVAPrivacyProfileRegistrar_")
-@protocol KVAPrivacyProfileRegistrar
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-@end
-
-
-/// A feature which is responsible for privacy.
-SWIFT_CLASS_NAMED("KVAPrivacy")
-@interface KVAPrivacy : NSObject
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// Register a profile.
-/// \param profile The profile to register.
-///
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-/// Set a boolean indicating if the specified profile name is enabled.
-/// See method register(profile:).
-/// \param profileNameString The name of a profile.
-///
-/// \param enabledBool A boolean indicating if enabled.
-///
-- (void)setEnabledBoolForProfileNameString:(NSString * _Nonnull)profileNameString enabledBool:(BOOL)enabledBool;
-@end
-
-@protocol KVAPrivacyProfileRegistrarProvider;
-
-/// A privacy profile.
-SWIFT_CLASS_NAMED("KVAPrivacyProfile")
-@interface KVAPrivacyProfile : NSObject
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the privacy profile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacyProfile.
-///
-/// \param payloadKeyStringArray An array of datapoint identifiers.
-///
-/// \param payloadIdStringArray An array of payload identifiers.
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the KVAPrivacyProfile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray payloadIdStringArray:(NSArray * _Nullable)payloadIdStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A unique name string.
-@property (nonatomic, readonly, copy) NSString * _Nonnull nameString;
-/// An array of payload keys (datapoint identifiers).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadKeyStringArray;
-/// An array of payload identifiers (network transaction types).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadIdStringArray;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPrivacyProfileRegistrarProvider_")
-@protocol KVAPrivacyProfileRegistrarProvider
-/// A property which conforms to protocol KVAPrivacyProfileRegistrar.
-@property (nonatomic, readonly, strong) id _Nonnull privacyProfileRegistrar;
-@end
-
@class KVAPushNotificationsToken;
SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPushNotificationsTokenRegistrar_")
@@ -1025,32 +1098,35 @@ SWIFT_CLASS_NAMED("KVAPushNotifications")
/// A push notifications token.
SWIFT_CLASS_NAMED("KVAPushNotificationsToken")
-@interface KVAPushNotificationsToken : NSObject
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenData The device token as provided in Data.
-///
-+ (void)registerWithData:(NSData * _Nonnull)deviceTokenData;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenDataHexString The device token as provided as a data hex string.
+@interface KVAPushNotificationsToken : NSObject
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
///
-+ (void)registerWithDataHexString:(NSString * _Nonnull)deviceTokenDataHexString;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenData The device token as provided in Data.
++ (void)registerWithData:(NSData * _Nonnull)data;
+/// Create a push notifications token using data and then register.
+/// \param data The device token as provided in Data.
///
/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
///
-+ (void)registerWithData:(NSData * _Nonnull)deviceTokenData registrarArray:(NSArray> * _Nullable)registrarArray;
-/// Create a push notifications token using deviceTokenData and then register.
-/// \param deviceTokenDataHexString The device token as provided as a data hex string.
++ (void)registerWithData:(NSData * _Nonnull)data registrarArray:(NSArray> * _Nullable)registrarArray;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
+///
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString;
+/// Create a push notifications token using data and then register.
+/// \param dataHexString The device token as provided as a data hex string.
///
/// \param registrarArray An array of KVAPushNotificationsTokenRegistrarProvider to which to add the token.
///
-+ (void)registerWithDataHexString:(NSString * _Nonnull)deviceTokenDataHexString registrarArray:(NSArray> * _Nullable)registrarArray;
++ (void)registerWithDataHexString:(NSString * _Nonnull)dataHexString registrarArray:(NSArray> * _Nullable)registrarArray;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
/// The token data as provided by the operating system.
@property (nonatomic, readonly, copy) NSData * _Nullable data;
/// The date that the token was provided by the operating system.
@property (nonatomic, readonly, copy) NSDate * _Nullable providedDate;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
@@ -1080,14 +1156,15 @@ SWIFT_CLASS_NAMED("KVASessions")
@class KVATrackerConfig;
@class KVATrackerGeneral;
-@class KVANetworking;
+@class KVAPrivacy;
+@protocol KVAPrivacyProfileRegistrar;
/// The class KVATracker provides an interface between a host application and Kochava’s Attribution and Measurement servers.
SWIFT_CLASS_NAMED("KVATracker")
-@interface KVATracker : NSObject
+@interface KVATracker : NSObject
/// A shared instance, for convenience.
/// This is the preferred way of using a tracker. To complete the integration you must call func start(withAppGUIDString:)
or func start(withPartnerNameString:)
. You may alternatively use a constructor to create your own tracker. The shared instance simplifies your implementation as you do not need to store a tracker instance somewhere in a public location in your own code.
-/// By default this instance will use the default storage location equivalent to calling init(storageIdString:)
with storageIdString nil. If you wish to specify an alternative storage location, see var sharedStorageIdString
.
+/// By default this instance will use the default storage location equivalent to calling init(storageIdentifier:)
with storageIdentifier nil. If you wish to specify an alternative storage location, see var sharedStorageIdentifier
.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVATracker * _Nonnull shared;)
+ (KVATracker * _Nonnull)shared SWIFT_WARN_UNUSED_RESULT;
/// A shared instance, for convenience— optional.
@@ -1114,12 +1191,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// \code
/// class MyClass
/// {
-/// let tracker = KVATracker(storageIdString: "alternate")
+/// let tracker = KVATracker(storageIdentifier: "alternate")
/// }
///
-/// \endcode\param storageIdString An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+/// \endcode\param storageIdentifier An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
///
-- (nonnull instancetype)initWithStorageIdString:(NSString * _Nullable)storageIdString OBJC_DESIGNATED_INITIALIZER;
+- (nonnull instancetype)initWithStorageIdentifier:(NSString * _Nullable)storageIdentifier OBJC_DESIGNATED_INITIALIZER;
/// Create a tracker— using modern Objective-C syntax.
/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
/// note:
@@ -1128,9 +1205,19 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// \code
/// KVATracker *tracker = KVATracker.tracker;
///
-/// \endcodeFuture: @available(*, deprecated, renamed: “init()”)
-+ (nonnull instancetype)tracker SWIFT_WARN_UNUSED_RESULT;
-+ (nonnull instancetype)trackerWithStorageIdString:(NSString * _Nullable)storageIdString SWIFT_WARN_UNUSED_RESULT;
+/// \endcode
++ (nonnull instancetype)tracker SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init() instead. If in Objective-C then use [[KVATracker alloc] init]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently.", "init()");
+/// Create a tracker— using modern Objective-C syntax.
+/// You rarely create instances of class KVATracker. Instead, you start the provided shared instance using one of the start instance methods. See static var shared
.
+/// Example
+/// \code
+/// KVATracker *tracker = [KVATracker trackerWithStorageIdentifier:@"alternate"];
+///
+/// \endcodenote:
+/// This convenience constructor exists for Objective-C and is expected to be removed in a future version. In Swift you should use default constructor KVATracker(storageIdentifier:)— or preferably, the shared instance.
+/// \param storageIdString An optional storage identifier. The storage identifier should be left unset (nil) unless you have a reason to not use the default storage space. See default constructor KVATracker().
+///
++ (nonnull instancetype)trackerWithStorageIdString:(NSString * _Nullable)storageIdString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(storageIdentifier:) instead. If in Objective-C then use [[KVATracker alloc] initWithStorageIdentifier:]. Also consider using the shared instance, var shared, which should be used unless you intend to use multiple instances concurrently. If you need to set a storage identifier, you may do so with the shared instance by first setting var sharedStorageIdentifier prior to any other access to var shared. See static var sharedStorageIdentifier for important information regarding the use of setting or changing the storage identifier.", "init(storageIdentifier:)");
/// Configure the instance with an object.
/// This is the same method which is used to configure the instance when the config
response is returned from Kochava’s servers (aka kvinit). It can also be called from the host to change the defaults of various parameters (or else override them). The structure of the object you provide has the same capability as that which the server may return. Additionally you can wrap the parameters you provide in special objects with special keys $default$
, $default.append$
, $override$
, or $override.append$
, to indicate how these options are treated relative to the server’s options.
/// | Special Key | Treatment |
@@ -1188,23 +1275,43 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// Start the tracker.
/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
- (void)start;
-/// Return a description of the instance.
-@property (nonatomic, readonly, copy) NSString * _Nonnull description;
-/// Execute an advanced instruction.
-/// This function can be used to executed advanced instruction(s) for certain atypical use cases. You should only use this if instructed by your Kochava Client Success Manager.
-/// \param identifierString An identifier for the advanced instruction.
-///
-/// \param valueObject A value object for the advanced instruction.
-///
-- (void)executeAdvancedInstructionWithIdentifierString:(NSString * _Nonnull)identifierString valueObject:(id _Nullable)valueObject;
-/// Invalidate the instance.
+/// Start the tracker with advanced options.
+/// An appGUIDString or partnerNameString must be set prior to making this call. To do this, instead see func start(withAppGUIDString:)
and func start(withPartnerNameString:)
. This method is called by those two methods, and provides public conformance to protocol KVAStartable. This method can be used to start an instance of a tracker which was created from decoded JSON.
+/// important:
+/// If you pass asyncBool as false, it becomes your responsibility to ensure that class KVASystem var shared func primarySystemStartDidExecuteOnMainThread() has been called prior to calling this method. The synchronous dispatch associated with this process can only be made after an asynchronous dispatch to ensure that no locks exist at the time, and so if you pass asyncBool as false it will be skipped here.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)startWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Stop the tracker.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+- (void)stop;
+/// Stop the tracker with advanced options.
+/// The primary action of this method is to reset the startedTask, which will cause any task which is dependent upon that task to block the initiation of new execution. The current state of the system is fundamentally maintained; however, essentially the same things which would not execute prior to having been started will not execute while stopped.
+/// Stop is similar to invalidate()
(or the use of KVATrackerProduct/reset(deleteLocalDataBool:) or KVATrackerProduct/shutdown(deleteLocalDataBool:) which wrap invalidate()
) in that both will block new execution, though through different mechanisms; however, it is different in that stop maintains state and can be started again. In contrast invalidate()
discards state, cannot be re-started, and in the case of the shared instance is automatically released.
+/// Stop is similar to class KVANetworking var sleepBool in that both will block new execution through a similar mechanism; however, it is different in that stop essentially covers all aspects of exectution which are at an inverse of start. In contrast, class KVANetworking var sleepBool exempts certain key features and these can continue to execute while sleep is in effect.
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)stopWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Invalidate the tracker.
/// When using this method with the shared instance, you are guaranteed to be re-defaulted a new instance the next time it is referenced, and you may immediately move forward to re-configure and start it.
- (void)invalidate;
-/// Invalidate the instance.
+/// Invalidate the tracker with advanced options.
/// See func invalidate()
-- (void)invalidateWithAsyncBool:(BOOL)asyncBool printLogMessageBool:(BOOL)printLogMessageBool;
+/// \param logMessagePrintBool A boolean indicating if a log messages consistent with this being a call to a public entry point should be printed.
+///
+/// \param asyncBool A boolean indicating if the work within this method should asynchronously dispatch to the globalSerial queue.
+///
+- (void)invalidateWithLogMessagePrintBool:(BOOL)logMessagePrintBool asyncBool:(BOOL)asyncBool;
+/// Return a description of the instance.
+@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
-@property (nonatomic, readonly, strong) KVAAdNetwork * _Nullable adNetwork;
+@property (nonatomic, readonly, strong) KVAAdNetwork * _Nonnull adNetwork;
/// A feature which may be used to limit advertising tracking from the level of the application (or host).
@property (nonatomic, readonly, strong) KVAAppLimitAdTracking * _Nonnull appLimitAdTracking;
/// A feature which interfaces with Apple’s App Tracking Transparency system.
@@ -1214,14 +1321,11 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// A feature which is responsible for controlling and updating the configuration of the tracker.
/// This is sometimes referred to by the name of the backing service which provides the configuration, kvinit.
@property (nonatomic, readonly, strong) KVATrackerConfig * _Nonnull config;
-/// A feature which serves as an authority related to consent for the sharing of personal data.
-/// Data sharing privacy laws such as GDPR require consent to be obtained before certain kinds of personal data may be collected or calculated, kept in memory, persisted or retained in persistent storage, and/or shared with partners. During the natural lifecycle, there are times where partners may be added and cause the consent status to fall back to an unknown state. Later the user may again be prompted and the consent status may (or may not) again come to be known. All of this is predicated upon whether or not consent is required, which is governed by a variety of factors such as location.
-@property (nonatomic, readonly, strong) KVAConsent * _Nonnull consent;
/// A feature which is responsible for custom identifiers.
-/// Register a custom identifier by calling class KVACustomIdentifiers
func KVACustomIdentifiers/register(withNameString:identifierString:)
.
+/// Register a custom identifier by calling class KVACustomIdentifiers
func KVACustomIdentifiers/register(name:identifier:)
.
@property (nonatomic, readonly, strong) KVACustomIdentifiers * _Nonnull customIdentifiers;
/// A feature which measures deeplink activity.
-/// Create and process a basic deeplink (which is a wrapper for Apple’s url) by calling class KVADeeplink
func KVADeeplink/process(withURL:completionHandler:)
.
+/// Create and process a basic deeplink (which is a wrapper for Apple’s url) by calling class KVADeeplink
func KVADeeplink/process(url:closure_didComplete:)
.
@property (nonatomic, readonly, strong) KVADeeplinks * _Nonnull deeplinks;
/// A feature which is responsible for the identification of a device.
/// The managed id is referred to as the Kochava Device Id. Get the Kochava Device Id by getting class KVADeviceId
var KVADeviceId/string
.
@@ -1229,26 +1333,26 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
/// A feature which encapsulates all of the general aspects of a tracker not belonging to any other encapsulated features.
@property (nonatomic, readonly, strong) KVATrackerGeneral * _Nonnull general;
/// A feature which is responsible for linking identities.
-/// Register an identity link by calling class KVAIdentityLink
func KVAIdentityLink/register(withNameString:identifierString:)
.
+/// Register an identity link by calling class KVAIdentityLink
func KVAIdentityLink/register(name:identifier:)
.
@property (nonatomic, readonly, strong) KVAIdentityLink * _Nonnull identityLink;
/// A feature which provides information about the install.
/// The install is automatically sent to Kochava’s servers after starting the tracker, and after the retrieval of the tracker’s configuration in feature var config
.
@property (nonatomic, readonly, strong) KVAInstall * _Nonnull install;
/// A feature which provides networking support.
-/// The networking instance manages the exchange of data between the client and various server(s), along with the associated tasks, network transactions, adapters, and instructions. See class KVANetworking in module KochavaCore.
+/// The networking instance manages the exchange of data between the client and various server(s), along with the associated tasks, network transactions, and adapters. See class KVANetworking in module KochavaCore.
@property (nonatomic, readonly, strong) KVANetworking * _Nonnull networking;
-/// A feature which is responsible for privacy.
-/// Privacy profiles are automatically registered from the server. Alternatively create and register a privacy profile locally by calling class KVAPrivacyProfile
func KVAPrivacyProfile/register(withNameString:payloadKeyStringArray:)
. Enable (or explicitly disable) a profile by calling class KVAPrivacy
func KVAPrivacy/setEnabledBool(forProfileNameString:enabledBool:)
.
-@property (nonatomic, readonly, strong) KVAPrivacy * _Nonnull privacy;
/// A feature which provides for the measurement of push notifications.
-/// Create and register a push notifications token (which is a wrapper for Apple’s device token data) by calling class KVAPushNotificationsToken
func KVAPushNotificationsToken/register(withData:)
.
+/// Create and register a push notifications token (which is a wrapper for Apple’s device token data) by calling class KVAPushNotificationsToken
func KVAPushNotificationsToken/register(data:)
.
@property (nonatomic, readonly, strong) KVAPushNotifications * _Nonnull pushNotifications;
-/// A boolean which indicates if you want to limit ad tracking at the application level. This is a convenience variable which is equivalent to var appLimitAdTracking
func KVAAppLimitAdTracking/bool
.
+/// A boolean which indicates if you want to limit ad tracking at the application level. This is a convenience variable which is fully equivalent to, and interchangeable with, appLimitAdTracking
.KVAAppLimitAdTracking/bool
.
/// This feature is related to the Limit Ad Tracking feature which is typically found on an Apple device under Settings, Privacy, Advertising. In the same way that you can limit ad tracking through that setting, this feature provides a second and independent means for the host app to limit ad tracking by asking the user directly. A value of false from either this feature or Apple’s will result in the limiting of ad tracking.
-@property (nonatomic) BOOL appLimitAdTrackingBool;
-/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install (convenience). This is a convenience variable which is equivalent to var deviceId
func KVADeviceId/string
.
-@property (nonatomic, readonly, copy) NSString * _Nullable deviceIdString;
-/// A boolean which when true causes the instance to sleep. This is a convenience variable which is equivalent to var networking
func sleepBool.
+@property (nonatomic) BOOL appLimitAdTrackingBool SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use Swift var appLimitAdTracking.bool instead. In Objective-C use var appLimitAdTracking.boolean instead, as bool is a reserved word in Objective-C.", "appLimitAdTracking.bool");
+/// A property containing the unique device ID that was generated when the tracker was first initialized on the current install (convenience). This is a convenience variable which is fully equivalent to, and interchangeable with, deviceId
.KVADeviceId/string
.
+@property (nonatomic, readonly, copy) NSString * _Nullable deviceIdString SWIFT_DEPRECATED_MSG("Convenience wrapper function deprecated. Use var deviceId.string instead.", "deviceId.string");
+/// A feature which is responsible for privacy, including intelligent consent. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.privacy.
+/// Privacy profiles are automatically registered from the server. Alternatively create and register a privacy profile locally by calling class KVAPrivacyProfile func KVAPrivacyProfile/register(name:payloadKeyStringArray:). Enable (or explicitly disable) a profile by calling class KVAPrivacy func KVAPrivacy/setEnabledBool(forProfileNameString:enabledBool:).
+@property (nonatomic, readonly, strong) KVAPrivacy * _Nonnull privacy;
+/// A boolean which when true causes the instance to sleep. This is a convenience variable which is fully equivalent to, and interchangeable with, networking
.sleepBool.
/// The default is false. When set to true, this causes tasks to effectively be suspended until this condition is lifted. While this is set to true, tasks are not lost per-say; however, if a task may have otherwise occurred multiple times, it may be represented only once once the condition is lifted.
@property (nonatomic) BOOL sleepBool;
@property (nonatomic, readonly, strong) id _Nullable deeplinksProcessor;
@@ -1257,9 +1361,12 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) id _Nonnull
@property (nonatomic, readonly, strong) id _Nonnull pushNotificationsTokenRegistrar;
/// A string used as a storage identifier for the shared instance.
/// This is used to further qualify where in persistent storage the information for this instance is stored. This property should not be used except in very specific circumstances. Please contact your client success representative if you are interested in using this. You would set this value to a short unique string consisting of regular alphanumeric characters.
-/// Following deployment with a given storage identifer this should never be changed except to represent an entirely new integration.
+/// Following deployment with a given storage identifier this should never be changed except to represent an entirely new integration.
/// If used, it is imperative that this value be consistently set prior to accessing the shared instance for the first time. You must make accommodations to set this as early as possible, where it would be prior to any access to var shared
throughout all of your code.
-SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdString;)
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdentifier;)
++ (NSString * _Nullable)sharedStorageIdentifier SWIFT_WARN_UNUSED_RESULT;
++ (void)setSharedStorageIdentifier:(NSString * _Nullable)sharedStorageIdentifier;
+SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sharedStorageIdString SWIFT_DEPRECATED_MSG("Use sharedStorageIdentifier instead.", "sharedStorageIdentifier");)
+ (NSString * _Nullable)sharedStorageIdString SWIFT_WARN_UNUSED_RESULT;
+ (void)setSharedStorageIdString:(NSString * _Nullable)sharedStorageIdString;
/// A boolean indicating whether or not the instance has been started.
@@ -1275,6 +1382,15 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, copy) NSString * _Nullable sha
SWIFT_CLASS_NAMED("KVATrackerConfig")
@interface KVATrackerConfig : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Get the config dictionary with a completion handler.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
+///
+- (void)retrieveWithClosure_didComplete:(void (^ _Nonnull)(KVATrackerConfig * _Nonnull))closure_didComplete;
+/// A closure which is called when attribution is retrieved.
+@property (nonatomic, copy) void (^ _Nullable closure_didComplete)(KVATrackerConfig * _Nonnull);
+@property (nonatomic, readonly) BOOL consentGDPRAppliesBool;
+/// A boolean indicating if the configuration has been collected from the server at least one time.
+@property (nonatomic, readonly) BOOL collectedBool;
@end
@@ -1327,14 +1443,17 @@ SWIFT_CLASS_NAMED("KVATrackerUpdates")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
+#endif
+#if defined(__cplusplus)
+#endif
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
#pragma clang diagnostic pop
#endif
-#elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__
-// Generated by Apple Swift version 5.6 (swiftlang-5.6.0.323.62 clang-1316.0.20.8)
+#elif defined(__x86_64__) && __x86_64__
+// Generated by Apple Swift version 5.7.1 (swiftlang-5.7.1.135.3 clang-1400.0.29.51)
#ifndef KOCHAVATRACKER_SWIFT_H
#define KOCHAVATRACKER_SWIFT_H
#pragma clang diagnostic push
@@ -1357,11 +1476,20 @@ SWIFT_CLASS_NAMED("KVATrackerUpdates")
# include
#endif
+#pragma clang diagnostic ignored "-Wduplicate-method-match"
#pragma clang diagnostic ignored "-Wauto-import"
+#if defined(__OBJC__)
#include
+#endif
+#if defined(__cplusplus)
+#include
+#include
+#include
+#else
#include
#include
#include
+#endif
#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
@@ -1517,9 +1645,11 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#else
# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg)
#endif
+#if defined(__OBJC__)
#if !defined(IBSegueAction)
# define IBSegueAction
#endif
+#endif
#if !defined(SWIFT_EXTERN)
# if defined(__cplusplus)
# define SWIFT_EXTERN extern "C"
@@ -1527,6 +1657,28 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_EXTERN extern
# endif
#endif
+#if !defined(SWIFT_CALL)
+# define SWIFT_CALL __attribute__((swiftcall))
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT noexcept
+#endif
+#else
+#if !defined(SWIFT_NOEXCEPT)
+# define SWIFT_NOEXCEPT
+#endif
+#endif
+#if defined(__cplusplus)
+#if !defined(SWIFT_CXX_INT_DEFINED)
+#define SWIFT_CXX_INT_DEFINED
+namespace swift {
+using Int = ptrdiff_t;
+using UInt = size_t;
+}
+#endif
+#endif
+#if defined(__OBJC__)
#if __has_feature(modules)
#if __has_warning("-Watimport-in-framework-header")
#pragma clang diagnostic ignored "-Watimport-in-framework-header"
@@ -1534,11 +1686,14 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
@import AppTrackingTransparency;
@import Foundation;
@import JavaScriptCore;
+@import KochavaCore;
@import ObjectiveC;
+@import StoreKit;
#endif
#import
+#endif
#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch"
#pragma clang diagnostic ignored "-Wduplicate-method-arg"
#if __has_warning("-Wpragma-clang-attribute")
@@ -1546,6 +1701,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
#pragma clang diagnostic ignored "-Wunknown-pragmas"
#pragma clang diagnostic ignored "-Wnullability"
+#pragma clang diagnostic ignored "-Wdollar-in-identifier-extension"
#if __has_attribute(external_source_symbol)
# pragma push_macro("any")
@@ -1554,17 +1710,21 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# pragma pop_macro("any")
#endif
+#if defined(__OBJC__)
@class KVAAdNetworkConversion;
/// A feature which interfaces with Apple’s SKAdNetwork attribution system.
SWIFT_CLASS_NAMED("KVAAdNetwork")
@interface KVAAdNetwork : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
-/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didRegisterAppForAttributionBlock)(KVAAdNetwork * _Nonnull);
/// The current conversion information.
@property (nonatomic, strong) KVAAdNetworkConversion * _Nonnull conversion;
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) void (^ _Nullable closure_didRegisterAppForAttribution)(KVAAdNetwork * _Nonnull);
+/// A closure which is called when the SKAdNetwork registerAppForAdNetworkAttribution API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkDidRegisterAppForAttributionBlock _Nullable didRegisterAppForAttributionBlock SWIFT_DEPRECATED_MSG("", "closure_didRegisterAppForAttribution");
@end
@class KVAAdNetworkConversionResult;
@@ -1574,9 +1734,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversion")
@interface KVAAdNetworkConversion : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A closure which is called when the SKAdNetwork updateConversionValue API has been called.
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
-@property (nonatomic, copy) void (^ _Nullable didUpdateValueBlock)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+@property (nonatomic, copy) void (^ _Nullable closure_didUpdatePostbackValue)(KVAAdNetworkConversion * _Nonnull, KVAAdNetworkConversionResult * _Nonnull);
+/// A closure which is called when the SKAdNetwork updatePostbackConversionValue API has been called.
+/// Your code should assume that if some action needs to be performed on the main queue that it should first dispatch asynchronously to it.
+@property (nonatomic, copy) KVAAdNetworkConversionDidUpdateValueBlock _Nullable didUpdateValueBlock SWIFT_DEPRECATED_MSG("", "closure_didUpdatePostbackValue");
/// The current conversion result.
/// This object will mutate when the current result is updated. If you want a immutable picture then you should take a copy.
@property (nonatomic, strong) KVAAdNetworkConversionResult * _Nonnull result;
@@ -1591,6 +1754,14 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionEvent")
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
+
+/// A class which defines the parameters for the adnetwork conversion lock window.
+SWIFT_CLASS_NAMED("KVAAdNetworkConversionLockWindow")
+@interface KVAAdNetworkConversionLockWindow : NSObject
+- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
++ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
+@end
+
@class KVAContext;
@class NSString;
@class NSNumber;
@@ -1602,9 +1773,12 @@ SWIFT_CLASS_NAMED("KVAAdNetworkConversionResult")
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+ (nullable instancetype)kva_from:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
-/// Return the conversion value integer which is used with the SKAdNetwork updateConversionValue API.
+/// Return the conversion value integer which is used with the SKAdNetwork updatePostbackConversionValue API.
/// Apple currently restricts this value to 6-bits. This is a combination (OR) of the translated value (translatedValueIntNumber) with any extension interval value (extensionIntervalTranslatedValueInt.integerValue).
- (NSInteger)valueInt SWIFT_WARN_UNUSED_RESULT;
+/// The coarse value.
+@property (nonatomic, readonly) SKAdNetworkCoarseConversionValue _Nullable coarseValue SWIFT_AVAILABILITY(ios_app_extension,introduced=16.0) SWIFT_AVAILABILITY(ios,introduced=16.0);
+@property (nonatomic, readonly) NSError * _Nullable error;
/// A string which represents the model used for the conversion.
@property (nonatomic, readonly, copy) NSString * _Nullable modelString;
@property (nonatomic, readonly, strong) NSNumber * _Nullable translatedValueIntNumber;
@@ -1636,9 +1810,9 @@ SWIFT_CLASS_NAMED("KVAAppTrackingTransparency")
@interface KVAAppTrackingTransparency : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Notify that a request for tracking authorization did complete.
-/// \param authorizationStatus The provided authorization status.
+/// \param status The provided authorization status.
///
-- (void)authorizationDidCompleteWithStatus:(ATTrackingManagerAuthorizationStatus)authorizationStatus SWIFT_AVAILABILITY(ios_app_extension,introduced=14.0) SWIFT_AVAILABILITY(tvos,introduced=14.0) SWIFT_AVAILABILITY(maccatalyst,introduced=14.0) SWIFT_AVAILABILITY(macos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=14.0);
+- (void)authorizationDidCompleteWithStatus:(ATTrackingManagerAuthorizationStatus)status SWIFT_AVAILABILITY(ios_app_extension,introduced=14.0) SWIFT_AVAILABILITY(tvos,introduced=14.0) SWIFT_AVAILABILITY(maccatalyst,introduced=14.0) SWIFT_AVAILABILITY(macos,introduced=11.0) SWIFT_AVAILABILITY(ios,introduced=14.0);
/// A boolean which indicates if the instance should automatically request tracking authorization.
/// Default true. Subject to server-based override. Also subject to enabledBool. See enabledBool.
@property (nonatomic) BOOL autoRequestTrackingAuthorizationBool;
@@ -1662,22 +1836,6 @@ SWIFT_CLASS_NAMED("KVAAppleSearchAds")
@end
-/// A feature which provides for attribution through Apple’s Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2")
-@interface KVAAppleSearchAdsMethod2 : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-/// Apple’s attribution as provided by Apple Search Ads method 2.
-SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod2Attribution")
-@interface KVAAppleSearchAdsMethod2Attribution : NSObject
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
/// A feature which provides for attribution through Apple’s Apple Search Ads method 3.
SWIFT_CLASS_NAMED("KVAAppleSearchAdsMethod3")
@interface KVAAppleSearchAdsMethod3 : NSObject
@@ -1700,17 +1858,17 @@ SWIFT_CLASS_NAMED("KVAAttribution")
@interface KVAAttribution : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Get the attribution result with a completion handler.
-/// \param completionHandler A completion handler to call once the result has been retrieved.
+/// \param closure_didComplete A completion handler to call once the result has been retrieved.
///
-- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))completionHandler;
+- (void)retrieveResultWithCompletionHandler:(void (^ _Nonnull)(KVAAttributionResult * _Nonnull))closure_didComplete;
+/// The current attribution result.
+/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(closure_didComplete:)
+@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
/// A closure which is called when attribution is retrieved.
@property (nonatomic, copy) void (^ _Nullable closure_didRetrieveResult)(KVAAttribution * _Nonnull, KVAAttributionResult * _Nonnull);
/// A boolean indicating if an attribution result should be retrieved.
-/// This boolean does not need to be set if you are using func retrieveResult(withCompletionHandler:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
+/// This boolean does not need to be set if you are using func retrieveResult(closure_didComplete:)
to retrieve the attribution result. It needs to be set if you intend to set var closure_didRetrieveResult-swift.property
and then wait for it to be called.
@property (nonatomic) BOOL retrieveResultBool;
-/// The current attribution result.
-/// When accessed this property will contain whatever value may have been previously collected. For a current value which may initiate new asynchronous collection see func retrieveResult(withCompletionHandler:)
-@property (nonatomic, readonly, strong) KVAAttributionResult * _Nonnull result;
@end
@@ -1737,25 +1895,47 @@ SWIFT_CLASS_NAMED("KVACustomIdentifiers")
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
/// Register a custom identifier.
/// In order to send a custom identifier it must be whitelisted on your account.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register a custom identifier.
+/// In order to send a custom identifier it must be whitelisted on your account.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. For Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@class NSURL;
@protocol KVADeeplinksProcessorProvider;
+@class KVANetworking;
/// A deeplink.
SWIFT_CLASS_NAMED("KVADeeplink")
-@interface KVADeeplink : NSObject
+@interface KVADeeplink : NSObject
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:closure_didComplete:", "processWithURL:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -1763,7 +1943,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:closure_didComplete:", "processWithURL:timeoutTimeInterval:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -1771,7 +1959,17 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:processor:closure_didComplete:", "processWithURL:processor:closure_didComplete:");
+/// Create a deeplink and then process it.
+/// \param url The deep link url as provided.
+///
+/// \param timeoutTimeInterval A time interval after which to timeout and return whatever result we have.
+///
+/// \param processor An array of KVADeeplinksProcessorProvider to which to add the token.
+///
+/// \param closure_didComplete A closure to be called when processing is complete.
+///
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
/// Create a deeplink and then process it.
/// \param url The deep link url as provided.
///
@@ -1781,12 +1979,15 @@ SWIFT_CLASS_NAMED("KVADeeplink")
///
/// \param completionHandler A closure to be called when processing is complete.
///
-+ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
++ (void)processWithURL:(NSURL * _Nullable)url timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval processor:(id _Nullable)processor completionHandler:(void (^ _Nullable)(KVADeeplink * _Nonnull))completionHandler SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift static func process(url:timeoutTimeInterval:processor:closure_didComplete:) instead. If in Objective-C then use method +processWithURL:timeoutTimeInterval:processor:closure_didComplete:", "processWithURL:timeoutTimeInterval:processor:closure_didComplete:");
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nullable)kva_asForContext:(KVAContext * _Nullable)context SWIFT_WARN_UNUSED_RESULT;
- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
/// The deeplink url as provided by the operating system.
@property (nonatomic, copy) NSString * _Nullable urlString;
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
/// The destination for the deeplink.
@property (nonatomic, copy) NSString * _Nullable destinationString;
/// A dictionary containing raw information about the deeplink.
@@ -1801,9 +2002,9 @@ SWIFT_PROTOCOL("_TtP14KochavaTracker21KVADeeplinksProcessor_")
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -1812,14 +2013,20 @@ SWIFT_CLASS_NAMED("KVADeeplinks")
@interface KVADeeplinks : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
- (id _Nonnull)copyWithZone:(struct _NSZone * _Nullable)zone SWIFT_WARN_UNUSED_RESULT;
+/// Augment deferred prefetch.
+/// \param name The name for the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)augmentDeferredPrefetchWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
/// Process a deeplink.
/// \param deeplink An instance of KVADeeplink.
///
/// \param timeoutTimeInterval A timeout time interval.
///
-/// \param completionHandler A completion handler to call when processing is complete.
+/// \param closure_didComplete A completion handler to call when processing is complete.
///
-- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval completionHandler:(KVADeeplinkProcessCompletionHandler _Nullable)completionHandler;
+- (void)processDeeplink:(KVADeeplink * _Nonnull)deeplink timeoutTimeInterval:(NSTimeInterval)timeoutTimeInterval closure_didComplete:(void (^ _Nullable)(KVADeeplink * _Nonnull))closure_didComplete;
@end
@@ -1847,13 +2054,21 @@ SWIFT_CLASS_NAMED("KVADeviceId")
/// The class KVAEvent provides a means of defining a post-install event, providing standardized parameters.
SWIFT_CLASS_NAMED("KVAEvent")
-@interface KVAEvent : NSObject
+@interface KVAEvent : NSObject
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
+/// Create an event.
+/// The designated initializer.
+/// \param type An event type.
+///
+- (nonnull instancetype)initWithType:(KVAEventType * _Nonnull)type OBJC_DESIGNATED_INITIALIZER;
/// Create an event with a type— using modern Objective-C syntax.
-+ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)eventWithType:(KVAEventType * _Nonnull)type SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(type:) instead. If in Objective-C then use [[KVAEvent alloc] initWithType:]", "init(type:)");
+/// Create an event with a typeNameString.
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
+- (nonnull instancetype)initWithTypeNameString:(NSString * _Nonnull)typeNameString;
/// Create an event with a typeNameString— using modern Objective-C syntax.
-/// For TVML. This constructor exists because there doesn’t appear to be a way to export an enumeration using the JSExport system Apple provides.
-+ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT;
+/// For TVML. This constructor was created because there didn’t appear to be a way to export an Objective-C enumeration using the JSExport system Apple provides.
++ (nonnull instancetype)eventWithTypeNameString:(NSString * _Nonnull)typeNameString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(typeNameString:) instead. If in Objective-C then use [[KVAEvent alloc] initWithTypeNameString:]", "init(typeNameString:)");
/// Return a description of the instance.
@property (nonatomic, readonly, copy) NSString * _Nonnull description;
/// Send the event using the default KVAEventSenderProvider.
@@ -1864,24 +2079,27 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// Return a string representation of the name of the event.
/// a.k.a. “event_name”
- (NSString * _Nonnull)eventNameString SWIFT_WARN_UNUSED_RESULT;
-/// Return any valueObject for a given propertyIdentifierString.
-/// \param propertyIdentifierString A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
+/// Return any valueObject for a given propertyIdentifier.
+/// \param propertyIdentifier A string which generally would be equivalent to the name of the key of the property as it would appear in the event payload.
///
-- (id _Nullable)valueObjectForPropertyIdentifierString:(NSString * _Nullable)propertyIdentifierString SWIFT_WARN_UNUSED_RESULT;
+- (id _Nullable)valueObjectForPropertyIdentifier:(NSString * _Nullable)propertyIdentifier SWIFT_WARN_UNUSED_RESULT;
- (NSString * _Nullable)subURLIdString SWIFT_WARN_UNUSED_RESULT;
/// A type for the event
/// Although these types are standardized, custom events are designated using type .custom.
@property (nonatomic, readonly, strong) KVAEventType * _Nonnull eventType;
-/// A boolean indicating if a dispatch should occur when the event is sent.
+/// An instance of networking.
+/// This exists here related to the conformance to KVAExecutable and then KVANetworkingSetterProvider. When this instance is constructed and then executed as an executable from within the the networking class, the networking class will also when possible stamp itself here as an indication of where it originated, so that this instance can properly default where it should be sent to be executed. This can be derived from the networking.mutator.mutableDelegate when cast to whatever it may be expected to be. Because it’s weak it may disappear at some point, but if it’s there it’s a better default than a shared instance.
+@property (nonatomic, weak) KVANetworking * _Nullable networking;
+/// A boolean indicating if an asynchronous dispatch should occur when the event is sent.
/// Default true. The default behavior dispatches the sending of an event to the default queue that should be used when sending the event (i.e. KVADispatchQueue.globalSerial). If it is known that you are already on the appropriate queue, you may set this to true to avoid an additional dispatch. This can have the effect of fine tuning behavior to ensure that related operations essentially occur atomically. It is important to not use this feature if you are not on the appropriate queue already.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendDispatchBool;
+@property (nonatomic) BOOL sendAsyncBool;
/// A boolean indicating if a LogMessage should be printed when the event is sent.
/// Default true. The default behavior prints a log message when the event is sent. The corresponding log message is presented as though the event was sent by a call from the host. This boolean can be set to false so that the event will be sent silently, and not appear as though it was sent by a call the host.
/// note:
/// This API is public in order to make it available for the internal use of modules within the Kochava SDK. It should not be used unless otherwise directed by Kochava.
-@property (nonatomic) BOOL sendPrintLogMessageBool;
+@property (nonatomic) BOOL sendLogMessagePrintBool;
/// A boolean which when set will cause the event to be serviced locally when sent.
/// When serviced locally the response for the request is provided locally and the request is post the event to the server is never made. In every other respect the effects are the same. AdNetwork conversion information is still calculated.
@property (nonatomic) BOOL serviceLocallyBool;
@@ -1947,8 +2165,9 @@ SWIFT_CLASS_NAMED("KVAEvent")
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSString * _Nullable currencyString;
/// A property containing a custom event name string.
-/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventNameString property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
-@property (nonatomic, copy) NSString * _Nullable customEventNameString;
+/// Standardized event names are automatically determined from the event type enum. If an appropriate event type is not present, you may set the event type to KVAEventType.custom and the customEventName property to your custom event name string. Event names do not need to be pre-registered. They can be any alphanumeric string value which does not begin with an underscore. NOTE: Prepending an event name with an underscore is a convention reserved for Kochava system events. (i.e. _INSTALL)
+@property (nonatomic, copy) NSString * _Nullable customEventName;
+@property (nonatomic, copy) NSString * _Nullable customEventNameString SWIFT_DEPRECATED_MSG("", "customEventName");
/// A property containing a date.
/// This field has a somewhat generic quality, in that it can contain whatever you consider to be fitting value.
@property (nonatomic, copy) NSDate * _Nullable date;
@@ -2070,76 +2289,114 @@ SWIFT_CLASS_NAMED("KVAEvent")
@interface KVAEvent (SWIFT_EXTENSION(KochavaTracker))
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString;
-/// Create an event which has a customEventNameString, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:) instead.", "sendCustomWithEventName:");
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:senderArray:) instead.", "sendCustomWithEventName:senderArray:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
-/// Create an event which has a customEventNameString and an optional infoDictionary, and then send it.
-/// \param customEventNameString A string containing the event name.
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:) instead.", "sendCustomWithEventName:infoDictionary:");
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional dictionary containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoDictionary:senderArray:) instead.", "sendCustomWithEventName:infoDictionary:senderArray:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
-/// Create an event which has a customEventNameString and an optional infoString, and then send it.
-/// \param customEventNameString A string containing event name.
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString An info string.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:) instead.", "sendCustomWithEventName:infoString:");
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
///
/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
///
-+ (void)sendCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
++ (void)sendCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray;
+/// Create an event which has a custom event name and an optional string containing additional info, and then send it.
+/// \param eventName A string containing the custom event name.
+///
+/// \param infoString A custom string. It may be an unnested (single dimensional) dictionary converted to a JSON formatted string.
+///
+/// \param senderArray Optional. An array of senders. These are objects which conform to protocol KVAEventSenderProvider. If this parameter is not passed the default sender will be used. The default sender is the shared instance of class KVATracker, which if you are using you may simply your call by using the function of the same name which omits this parameter.
+///
++ (void)sendCustomWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString senderArray:(NSArray> * _Nullable)senderArray SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func sendCustom(eventName:infoString:senderArray:) instead.", "sendCustomWithEventName:infoString:senderArray:");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:]", "init(customWithEventName:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoDictionary A dictionary (single dimensional) containing any number of values with keys.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoDictionary:(NSDictionary * _Nullable)infoDictionary SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoDictionary:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoDictionary:]", "init(customWithEventName:infoDictionary:)");
/// Create an event with event type KVAEventType.custom.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-- (nonnull instancetype)initCustomWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString;
+- (nonnull instancetype)initCustomWithEventName:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString;
/// Create an event with event type KVAEventType.custom— using modern Objective-C syntax.
-/// \param customEventNameString A custom event name string.
+/// \param eventName A string containing the custom event name.
///
/// \param infoString An info string.
///
-+ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)customEventNameString infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT;
++ (nonnull instancetype)customEventWithNameString:(NSString * _Nonnull)eventName infoString:(NSString * _Nullable)infoString SWIFT_WARN_UNUSED_RESULT SWIFT_DEPRECATED_MSG("Modern Objective-C-style factory method deprecated. Use Swift init(customWithEventName:infoString:) instead. If in Objective-C then use [[KVAEvent alloc] initCustomWithEventName:infoString:]", "init(customWithEventName:infoString:)");
@end
@@ -2183,7 +2440,7 @@ SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType
/// An event type which signifies that consent was granted.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull consentGranted;)
+ (KVAEventType * _Nonnull)consentGranted SWIFT_WARN_UNUSED_RESULT;
-/// An event type which signifies that a customEventNameString will be supplied.
+/// An event type which signifies that a customEventName will be supplied.
SWIFT_CLASS_PROPERTY(@property (nonatomic, class, readonly, strong) KVAEventType * _Nonnull custom;)
+ (KVAEventType * _Nonnull)custom SWIFT_WARN_UNUSED_RESULT;
/// An event type which signifies that there was a deep link.
@@ -2247,11 +2504,19 @@ SWIFT_CLASS_NAMED("KVAIdentityLink")
/// Register an identity link.
/// note:
/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
+/// \param name The name of the identifier.
+///
+/// \param identifier The identifier.
+///
+- (void)registerWithName:(NSString * _Nonnull)name identifier:(NSString * _Nonnull)identifier;
+/// Register an identity link.
+/// note:
+/// When used, and when possible, this method should be called before (or as soon as possible after) the tracker is started. This helps to ensure that your identity values are associated with your install.
/// \param nameString The name of the identifier.
///
/// \param identifierString The identifier.
///
-- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString;
+- (void)registerWithNameString:(NSString * _Nonnull)nameString identifierString:(NSString * _Nonnull)identifierString SWIFT_DEPRECATED_MSG("Modern Objective-C-style method deprecated. Use Swift func register(name:identifier:) instead. In Objective-C use method -registerWithName:identifier:.", "registerWithName:identifier:");
@end
@@ -2264,79 +2529,6 @@ SWIFT_CLASS_NAMED("KVAInstall")
@property (nonatomic, readonly, copy) NSDate * _Nullable didStartFirstDate;
@end
-@class KVAPrivacyProfile;
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker26KVAPrivacyProfileRegistrar_")
-@protocol KVAPrivacyProfileRegistrar
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-@end
-
-
-/// A feature which is responsible for privacy.
-SWIFT_CLASS_NAMED("KVAPrivacy")
-@interface KVAPrivacy : NSObject
-- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
-/// Register a profile.
-/// \param profile The profile to register.
-///
-- (void)registerProfile:(KVAPrivacyProfile * _Nonnull)profile;
-/// Set a boolean indicating if the specified profile name is enabled.
-/// See method register(profile:).
-/// \param profileNameString The name of a profile.
-///
-/// \param enabledBool A boolean indicating if enabled.
-///
-- (void)setEnabledBoolForProfileNameString:(NSString * _Nonnull)profileNameString enabledBool:(BOOL)enabledBool;
-@end
-
-@protocol KVAPrivacyProfileRegistrarProvider;
-
-/// A privacy profile.
-SWIFT_CLASS_NAMED("KVAPrivacyProfile")
-@interface KVAPrivacyProfile : NSObject
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacy profile.
-///
-/// \param payloadKeyStringArray An array of payload keys (datapoint identifiers).
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the privacy profile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-/// Create a privacy profile and then register it.
-/// \param nameString The name of the privacyProfile.
-///
-/// \param payloadKeyStringArray An array of datapoint identifiers.
-///
-/// \param payloadIdStringArray An array of payload identifiers.
-///
-/// \param registrarArray An array of KVAPrivacyProfileRegistrarProvider to which to register the KVAPrivacyProfile.
-///
-+ (void)registerWithNameString:(NSString * _Nonnull)nameString payloadKeyStringArray:(NSArray * _Nullable)payloadKeyStringArray payloadIdStringArray:(NSArray * _Nullable)payloadIdStringArray registrarArray:(NSArray> * _Nullable)registrarArray;
-- (BOOL)isEqual:(id _Nullable)object SWIFT_WARN_UNUSED_RESULT;
-/// A unique name string.
-@property (nonatomic, readonly, copy) NSString * _Nonnull nameString;
-/// An array of payload keys (datapoint identifiers).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadKeyStringArray;
-/// An array of payload identifiers (network transaction types).
-@property (nonatomic, readonly, copy) NSArray * _Nullable payloadIdStringArray;
-- (nonnull instancetype)init SWIFT_UNAVAILABLE;
-+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
-@end
-
-
-
-SWIFT_PROTOCOL("_TtP14KochavaTracker34KVAPrivacyProfileRegistrarProvider_")
-@protocol KVAPrivacyProfileRegistrarProvider
-/// A property which conforms to protocol KVAPrivacyProfileRegistrar.
-@property (nonatomic, readonly, strong) id