diff --git a/.gitignore b/.gitignore index 40cd429..9a35c66 100644 --- a/.gitignore +++ b/.gitignore @@ -18,6 +18,7 @@ yarn.lock *.launch .settings/ *.sublime-workspace +.idea # IDE - VSCode .vscode/* @@ -43,3 +44,9 @@ Thumbs.db *.tgz packages/**/angular/dist dist +.gradle +**/build/intermediates/** +**/build/kotlin/** +**/build/kotlinToolingMetadata/** +**/build/tmp/** +**/build/outputs/** diff --git a/apps/demo/package.json b/apps/demo/package.json index 3e26c2a..dd0f01e 100644 --- a/apps/demo/package.json +++ b/apps/demo/package.json @@ -7,9 +7,8 @@ "@nativescript/core": "file:../../node_modules/@nativescript/core", "@essent/nativescript-ng-sentry": "file:../../packages/nativescript-ng-sentry", "@essent/nativescript-adobe-experience-cloud": "file:../../packages/nativescript-adobe-experience-cloud", - "@essent/nativescript-appdynamics": "file:../../packages/nativescript-appdynamics", + "@essent/nativescript-appdynamics": "file:../../dist/packages/nativescript-appdynamics", "@essent/nativescript-iadvize": "file:../../packages/nativescript-iadvize", - "@essent/nativescript-medallia": "file:../../packages/nativescript-medallia", "@essent/nativescript-urban-airship": "file:../../packages/nativescript-urban-airship", "@essent/nativescript-webview-ext": "file:../../packages/nativescript-webview-ext" }, diff --git a/apps/demo/project.json b/apps/demo/project.json index 005d2aa..1afec5f 100644 --- a/apps/demo/project.json +++ b/apps/demo/project.json @@ -21,10 +21,10 @@ } ] }, - "ios": { - "executor": "@nativescript/nx:build", + "debug": { + "executor": "@nativescript/nx:debug", "options": { - "platform": "ios" + "noHmr": true }, "dependsOn": [ { @@ -46,10 +46,8 @@ ] }, "clean": { - "executor": "@nativescript/nx:build", - "options": { - "clean": true - } + "executor": "@nativescript/nx:clean", + "options": {} }, "lint": { "executor": "@nx/linter:eslint", diff --git a/packages/nativescript-adobe-experience-cloud/index.ios.ts b/packages/nativescript-adobe-experience-cloud/index.ios.ts index 02f457c..b8d5ebc 100644 --- a/packages/nativescript-adobe-experience-cloud/index.ios.ts +++ b/packages/nativescript-adobe-experience-cloud/index.ios.ts @@ -7,7 +7,7 @@ export class AdobeAnalytics extends AdobeAnalyticsCommon { public initSdk(adobeAnalyticsSettings: AdobeAnalyticsSettings, applicationState: number): void { ACPCore.setLogLevel(adobeAnalyticsSettings.debug ? ACPMobileLogLevel.Debug : ACPMobileLogLevel.Error); ACPCore.configureWithAppId(adobeAnalyticsSettings.environmentId); - AEPAssurance.registerExtension(); + // AEPMobileAssurance.registerExtension(); ACPTarget.registerExtension(); ACPUserProfile.registerExtension(); ACPIdentity.registerExtension(); @@ -80,6 +80,6 @@ export class AdobeAnalytics extends AdobeAnalyticsCommon { } public startAssuranceSession(url: NSURL): void { - AEPAssurance.startSession(url); + AEPMobileAssurance.startSession(); } } diff --git a/packages/nativescript-adobe-experience-cloud/package.json b/packages/nativescript-adobe-experience-cloud/package.json index 6dff3ec..56b9a1d 100644 --- a/packages/nativescript-adobe-experience-cloud/package.json +++ b/packages/nativescript-adobe-experience-cloud/package.json @@ -1,6 +1,6 @@ { "name": "@essent/nativescript-adobe-experience-cloud", - "version": "3.0.0", + "version": "4.0.0-rc.0", "description": "Nativescript Adobe experience cloud integration plugin", "main": "index", "typings": "index.d.ts", diff --git a/packages/nativescript-adobe-experience-cloud/platforms/android/nativescript_adobe_experience_cloud.aar b/packages/nativescript-adobe-experience-cloud/platforms/android/nativescript_adobe_experience_cloud.aar deleted file mode 100644 index 6ee8c7f..0000000 Binary files a/packages/nativescript-adobe-experience-cloud/platforms/android/nativescript_adobe_experience_cloud.aar and /dev/null differ diff --git a/packages/nativescript-adobe-experience-cloud/platforms/android/nativescript_adobe_marketing_cloud.aar b/packages/nativescript-adobe-experience-cloud/platforms/android/nativescript_adobe_marketing_cloud.aar deleted file mode 100644 index cc05730..0000000 Binary files a/packages/nativescript-adobe-experience-cloud/platforms/android/nativescript_adobe_marketing_cloud.aar and /dev/null differ diff --git a/packages/nativescript-adobe-experience-cloud/platforms/ios/Podfile b/packages/nativescript-adobe-experience-cloud/platforms/ios/Podfile index 86eb4b0..8518d03 100644 --- a/packages/nativescript-adobe-experience-cloud/platforms/ios/Podfile +++ b/packages/nativescript-adobe-experience-cloud/platforms/ios/Podfile @@ -1,6 +1,8 @@ +platform :ios, '14.0' + use_frameworks! -pod 'AEPAssurance', '~> 1.0' -pod 'ACPTarget', '~> 2.1' -pod 'ACPUserProfile', '~> 2.0' -pod 'ACPCore', '~> 2.0' -pod 'ACPAnalytics', '~> 2.0' \ No newline at end of file +pod 'AEPAssurance', '~> 4.0' +pod 'ACPTarget', '~> 2.2' +pod 'ACPUserProfile', '~> 2.2' +pod 'ACPCore', '~> 2.9' +pod 'ACPAnalytics', '~> 2.5' \ No newline at end of file diff --git a/packages/nativescript-adobe-experience-cloud/typings/objc!ACPAnalytics.d.ts b/packages/nativescript-adobe-experience-cloud/typings/objc!ACPAnalytics.d.ts index 1faa4cf..2cdc10a 100644 --- a/packages/nativescript-adobe-experience-cloud/typings/objc!ACPAnalytics.d.ts +++ b/packages/nativescript-adobe-experience-cloud/typings/objc!ACPAnalytics.d.ts @@ -1,4 +1,3 @@ -@NativeClass() declare class ACPAnalytics extends NSObject { static alloc(): ACPAnalytics; // inherited from NSObject @@ -8,10 +7,16 @@ declare class ACPAnalytics extends NSObject { static getQueueSize(callback: (p1: number) => void): void; + static getQueueSizeWithCompletionHandler(completionHandler: (p1: number, p2: NSError) => void): void; + static getTrackingIdentifier(callback: (p1: string) => void): void; + static getTrackingIdentifierWithCompletionHandler(completionHandler: (p1: string, p2: NSError) => void): void; + static getVisitorIdentifier(callback: (p1: string) => void): void; + static getVisitorIdentifierWithCompletionHandler(completionHandler: (p1: string, p2: NSError) => void): void; + static new(): ACPAnalytics; // inherited from NSObject static registerExtension(): void; diff --git a/packages/nativescript-adobe-experience-cloud/typings/objc!ACPCore.d.ts b/packages/nativescript-adobe-experience-cloud/typings/objc!ACPCore.d.ts index 0d56694..b9c0057 100644 --- a/packages/nativescript-adobe-experience-cloud/typings/objc!ACPCore.d.ts +++ b/packages/nativescript-adobe-experience-cloud/typings/objc!ACPCore.d.ts @@ -1,4 +1,3 @@ -@NativeClass() declare class ACPCore extends NSObject { static alloc(): ACPCore; // inherited from NSObject @@ -81,7 +80,6 @@ declare const enum ACPError { declare var ACPErrorDomain: string; -@NativeClass() declare class ACPExtension extends NSObject { static alloc(): ACPExtension; // inherited from NSObject @@ -98,7 +96,6 @@ declare class ACPExtension extends NSObject { version(): string; } -@NativeClass() declare class ACPExtensionApi extends NSObject { static alloc(): ACPExtensionApi; // inherited from NSObject @@ -137,7 +134,6 @@ declare const enum ACPExtensionError { declare var ACPExtensionErrorDomain: string; -@NativeClass() declare class ACPExtensionEvent extends NSObject { static alloc(): ACPExtensionEvent; // inherited from NSObject @@ -160,7 +156,6 @@ declare class ACPExtensionEvent extends NSObject { readonly eventUniqueIdentifier: string; } -@NativeClass() declare class ACPExtensionListener extends NSObject { static alloc(): ACPExtensionListener; // inherited from NSObject @@ -171,7 +166,6 @@ declare class ACPExtensionListener extends NSObject { hear(event: ACPExtensionEvent): void; } -@NativeClass() declare class ACPHttpConnection extends NSObject { static alloc(): ACPHttpConnection; // inherited from NSObject @@ -195,7 +189,6 @@ declare var ACPHttpConnectionPerformer: { prototype: ACPHttpConnectionPerformer; }; -@NativeClass() declare class ACPIdentity extends NSObject { static alloc(): ACPIdentity; // inherited from NSObject @@ -228,7 +221,6 @@ declare class ACPIdentity extends NSObject { static syncIdentifiersAuthentication(identifiers: NSDictionary, authenticationState: ACPMobileVisitorAuthenticationState): void; } -@NativeClass() declare class ACPLifecycle extends NSObject { static alloc(): ACPLifecycle; // inherited from NSObject @@ -265,7 +257,6 @@ declare const enum ACPMobileVisitorAuthenticationState { LoggedOut = 2, } -@NativeClass() declare class ACPMobileVisitorId extends NSObject { static alloc(): ACPMobileVisitorId; // inherited from NSObject @@ -298,7 +289,6 @@ declare const enum ACPMobileWrapperType { Xamarin = 5, } -@NativeClass() declare class ACPNetworkServiceOverrider extends NSObject { static alloc(): ACPNetworkServiceOverrider; // inherited from NSObject @@ -307,7 +297,6 @@ declare class ACPNetworkServiceOverrider extends NSObject { static setHttpConnectionPerformer(performer: ACPHttpConnectionPerformer): void; } -@NativeClass() declare class ACPSignal extends NSObject { static alloc(): ACPSignal; // inherited from NSObject diff --git a/packages/nativescript-adobe-experience-cloud/typings/objc!ACPUserProfile.d.ts b/packages/nativescript-adobe-experience-cloud/typings/objc!ACPUserProfile.d.ts index 4a49df3..6439e37 100644 --- a/packages/nativescript-adobe-experience-cloud/typings/objc!ACPUserProfile.d.ts +++ b/packages/nativescript-adobe-experience-cloud/typings/objc!ACPUserProfile.d.ts @@ -1,4 +1,3 @@ -@NativeClass() declare class ACPUserProfile extends NSObject { static alloc(): ACPUserProfile; // inherited from NSObject diff --git a/packages/nativescript-adobe-experience-cloud/typings/objc!AEPAssurance.d.ts b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPAssurance.d.ts index d940300..a4ce231 100644 --- a/packages/nativescript-adobe-experience-cloud/typings/objc!AEPAssurance.d.ts +++ b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPAssurance.d.ts @@ -1,15 +1,35 @@ -declare class AEPAssurance extends NSObject { - static alloc(): AEPAssurance; // inherited from NSObject +declare var AEPAssuranceVersionNumber: number; - static extensionVersion(): string; +declare var AEPAssuranceVersionString: interop.Reference; - static new(): AEPAssurance; // inherited from NSObject +declare class AEPMobileAssurance extends NSObject { + static alloc(): AEPMobileAssurance; // inherited from NSObject - static registerExtension(): boolean; + static new(): AEPMobileAssurance; // inherited from NSObject - static startSession(url: NSURL): void; -} + static setExtensionVersion(value: string): void; -declare var AEPAssuranceVersionNumber: number; + static startSession(): void; -declare var AEPAssuranceVersionString: interop.Reference; + static startSessionWithUrl(url: NSURL): void; + + friendlyName: string; + + metadata: NSDictionary; + + name: string; + + runtime: AEPExtensionRuntime; + + static extensionVersion: string; + + constructor(o: { runtime: AEPExtensionRuntime }); + + initWithRuntime(runtime: AEPExtensionRuntime): this; + + onRegistered(): void; + + onUnregistered(): void; + + readyForEvent(event: AEPEvent): boolean; +} diff --git a/packages/nativescript-adobe-experience-cloud/typings/objc!AEPCore.d.ts b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPCore.d.ts new file mode 100644 index 0000000..0714592 --- /dev/null +++ b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPCore.d.ts @@ -0,0 +1,375 @@ +declare var AEPCoreVersionNumber: number; + +declare var AEPCoreVersionString: interop.Reference; + +declare const enum AEPError { + Unexpected = 0, + + CallbackTimeout = 1, + + CallbackNil = 2, + + None = 3, + + ServerError = 4, + + NetworkError = 5, + + InvalidRequest = 6, + + InvalidResponse = 7, + + ErrorExtensionNotInitialized = 11, +} + +declare class AEPEvent extends NSObject { + static alloc(): AEPEvent; // inherited from NSObject + + static new(): AEPEvent; // inherited from NSObject + + readonly data: NSDictionary; + + eventHash: number; + + readonly id: NSUUID; + + readonly mask: NSArray; + + readonly name: string; + + readonly parentID: NSUUID; + + readonly responseID: NSUUID; + + readonly source: string; + + readonly timestamp: Date; + + readonly type: string; + + constructor(o: { name: string; type: string; source: string; data: NSDictionary }); + + constructor(o: { name: string; type: string; source: string; data: NSDictionary; mask: NSArray | string[] }); + + chainedEventWithNameTypeSourceDataMask(name: string, type: string, source: string, data: NSDictionary, mask: NSArray | string[]): AEPEvent; + + initWithNameTypeSourceData(name: string, type: string, source: string, data: NSDictionary): this; + + initWithNameTypeSourceDataMask(name: string, type: string, source: string, data: NSDictionary, mask: NSArray | string[]): this; + + responseEventWithNameTypeSourceData(name: string, type: string, source: string, data: NSDictionary): AEPEvent; +} + +declare class AEPEventHistoryRequest extends NSObject { + static alloc(): AEPEventHistoryRequest; // inherited from NSObject + + static new(): AEPEventHistoryRequest; // inherited from NSObject + + readonly fromDate: Date; + + readonly mask: NSDictionary; + + readonly toDate: Date; + + constructor(o: { mask: NSDictionary; from: Date; to: Date }); + + initWithMaskFromTo(mask: NSDictionary, from: Date, to: Date): this; +} + +declare class AEPEventHistoryResult extends NSObject { + static alloc(): AEPEventHistoryResult; // inherited from NSObject + + static new(): AEPEventHistoryResult; // inherited from NSObject + + readonly count: number; + + readonly newestOccurrence: Date; + + readonly oldestOccurrence: Date; +} + +declare class AEPEventSource extends NSObject { + static alloc(): AEPEventSource; // inherited from NSObject + + static new(): AEPEventSource; // inherited from NSObject + + static readonly applicationClose: string; + + static readonly applicationLaunch: string; + + static readonly createTracker: string; + + static readonly errorResponseContent: string; + + static readonly locationHintResult: string; + + static readonly none: string; + + static readonly notification: string; + + static readonly os: string; + + static readonly personalizationDecisions: string; + + static readonly removeIdentity: string; + + static readonly requestContent: string; + + static readonly requestIdentity: string; + + static readonly requestProfile: string; + + static readonly requestReset: string; + + static readonly resetComplete: string; + + static readonly responseContent: string; + + static readonly responseIdentity: string; + + static readonly responseProfile: string; + + static readonly sharedState: string; + + static readonly trackMedia: string; + + static readonly updateConsent: string; + + static readonly updateIdentity: string; + + static readonly wildcard: string; +} + +declare class AEPEventType extends NSObject { + static alloc(): AEPEventType; // inherited from NSObject + + static new(): AEPEventType; // inherited from NSObject + + static readonly acquisition: string; + + static readonly analytics: string; + + static readonly audienceManager: string; + + static readonly campaign: string; + + static readonly configuration: string; + + static readonly custom: string; + + static readonly edge: string; + + static readonly edgeConsent: string; + + static readonly edgeIdentity: string; + + static readonly edgeMedia: string; + + static readonly genericData: string; + + static readonly genericIdentity: string; + + static readonly genericLifecycle: string; + + static readonly genericPii: string; + + static readonly genericTrack: string; + + static readonly hub: string; + + static readonly identity: string; + + static readonly lifecycle: string; + + static readonly location: string; + + static readonly media: string; + + static readonly messaging: string; + + static readonly offerDecisioning: string; + + static readonly optimize: string; + + static readonly pii: string; + + static readonly places: string; + + static readonly rulesEngine: string; + + static readonly signal: string; + + static readonly system: string; + + static readonly target: string; + + static readonly userProfile: string; + + static readonly wildcard: string; +} + +interface AEPExtension { + friendlyName: string; + + metadata: NSDictionary; + + name: string; + + runtime: AEPExtensionRuntime; + + initWithRuntime?(runtime: AEPExtensionRuntime): AEPExtension; + + onRegistered(): void; + + onUnregistered(): void; + + readyForEvent(event: AEPEvent): boolean; +} +declare var AEPExtension: { + prototype: AEPExtension; + + extensionVersion(): string; +}; + +interface AEPExtensionRuntime { + createPendingSharedStateWithEvent(event: AEPEvent): (p1: NSDictionary) => void; + + createPendingXDMSharedStateWithEvent(event: AEPEvent): (p1: NSDictionary) => void; + + createSharedStateWithDataEvent(data: NSDictionary, event: AEPEvent): void; + + createXDMSharedStateWithDataEvent(data: NSDictionary, event: AEPEvent): void; + + dispatchWithEvent(event: AEPEvent): void; + + getHistoricalEventsEnforceOrderHandler(requests: NSArray | AEPEventHistoryRequest[], enforceOrder: boolean, handler: (p1: NSArray) => void): void; + + getSharedStateWithExtensionNameEventBarrier(extensionName: string, event: AEPEvent, barrier: boolean): AEPSharedStateResult; + + getSharedStateWithExtensionNameEventBarrierResolution(extensionName: string, event: AEPEvent, barrier: boolean, resolution: AEPSharedStateResolution): AEPSharedStateResult; + + getXDMSharedStateWithExtensionNameEventBarrier(extensionName: string, event: AEPEvent, barrier: boolean): AEPSharedStateResult; + + getXDMSharedStateWithExtensionNameEventBarrierResolution(extensionName: string, event: AEPEvent, barrier: boolean, resolution: AEPSharedStateResolution): AEPSharedStateResult; + + registerListenerWithTypeSourceListener(type: string, source: string, listener: (p1: AEPEvent) => void): void; + + startEvents(): void; + + stopEvents(): void; + + unregisterExtension(): void; +} +declare var AEPExtensionRuntime: { + prototype: AEPExtensionRuntime; +}; + +declare class AEPMobileCore extends NSObject { + static alloc(): AEPMobileCore; // inherited from NSObject + + static clearUpdatedConfiguration(): void; + + static collectLaunchInfo(userInfo: NSDictionary): void; + + static collectMessageInfo(messageInfo: NSDictionary): void; + + static collectPii(data: NSDictionary): void; + + static configureWithAppId(appId: string): void; + + static configureWithFilePath(filePath: string): void; + + static dispatch(event: AEPEvent): void; + + static dispatchTimeoutResponseCallback(event: AEPEvent, timeout: number, responseCallback: (p1: AEPEvent) => void): void; + + static getPrivacyStatus(completion: (p1: AEPPrivacyStatus) => void): void; + + static getRegisteredExtensions(): string; + + static getSdkIdentities(completion: (p1: string, p2: NSError) => void): void; + + static lifecyclePause(): void; + + static lifecycleStart(additionalContextData: NSDictionary): void; + + static new(): AEPMobileCore; // inherited from NSObject + + static registerEventListenerWithTypeSourceListener(type: string, source: string, listener: (p1: AEPEvent) => void): void; + + static registerExtensionCompletion(exten: typeof NSObject, completion: () => void): void; + + static registerExtensionsCompletion(extensions: NSArray | (typeof NSObject)[], completion: () => void): void; + + static resetIdentities(): void; + + static setAdvertisingIdentifier(identifier: string): void; + + static setAppGroup(group: string): void; + + static setLogLevel(level: AEPLogLevel): void; + + static setMessagingDelegate(newValue: AEPMessagingDelegate): void; + + static setPrivacyStatus(status: AEPPrivacyStatus): void; + + static setPushIdentifier(deviceToken: NSData): void; + + static setWrapperType(type: AEPWrapperType): void; + + static trackActionData(action: string, data: NSDictionary): void; + + static trackStateData(state: string, data: NSDictionary): void; + + static unregisterExtensionCompletion(exten: typeof NSObject, completion: () => void): void; + + static updateConfiguration(configDict: NSDictionary): void; + + static readonly extensionVersion: string; +} + +declare const enum AEPPrivacyStatus { + OptedIn = 0, + + OptedOut = 1, + + Unknown = 2, +} + +declare const enum AEPSharedStateResolution { + LastSet = 0, + + Any = 1, +} + +declare class AEPSharedStateResult extends NSObject { + static alloc(): AEPSharedStateResult; // inherited from NSObject + + static new(): AEPSharedStateResult; // inherited from NSObject + + readonly status: AEPSharedStateStatus; + + readonly value: NSDictionary; +} + +declare const enum AEPSharedStateStatus { + Set = 0, + + Pending = 1, + + None = 2, +} + +declare const enum AEPWrapperType { + None = 0, + + ReactNative = 1, + + Flutter = 2, + + Cordova = 3, + + Unity = 4, + + Xamarin = 5, +} diff --git a/packages/nativescript-adobe-experience-cloud/typings/objc!AEPRulesEngine.d.ts b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPRulesEngine.d.ts new file mode 100644 index 0000000..86c45a5 --- /dev/null +++ b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPRulesEngine.d.ts @@ -0,0 +1,3 @@ +declare var AEPRulesEngineVersionNumber: number; + +declare var AEPRulesEngineVersionString: interop.Reference; diff --git a/packages/nativescript-adobe-experience-cloud/typings/objc!AEPServices.d.ts b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPServices.d.ts new file mode 100644 index 0000000..708863f --- /dev/null +++ b/packages/nativescript-adobe-experience-cloud/typings/objc!AEPServices.d.ts @@ -0,0 +1,326 @@ +declare class AEPCache extends NSObject { + static alloc(): AEPCache; // inherited from NSObject + + static new(): AEPCache; // inherited from NSObject +} + +declare class AEPDataEntity extends NSObject { + static alloc(): AEPDataEntity; // inherited from NSObject + + static new(): AEPDataEntity; // inherited from NSObject +} + +interface AEPDataQueue { + addWithDataEntity(dataEntity: AEPDataEntity): boolean; + + clear(): boolean; + + close(): void; + + count(): number; + + peek(): AEPDataEntity; + + peekWithN(n: number): NSArray; + + remove(): boolean; + + removeWithN(n: number): boolean; +} +declare var AEPDataQueue: { + prototype: AEPDataQueue; +}; + +interface AEPDataQueuing { + getDataQueueWithLabel(label: string): AEPDataQueue; +} +declare var AEPDataQueuing: { + prototype: AEPDataQueuing; +}; + +interface AEPDismissible { + dismiss(): void; +} +declare var AEPDismissible: { + prototype: AEPDismissible; +}; + +declare class AEPFloatingButton extends NSObject implements AEPFloatingButtonPresentable { + static alloc(): AEPFloatingButton; // inherited from NSObject + + static new(): AEPFloatingButton; // inherited from NSObject + + dismiss(): void; + + setButtonImageWithImageData(imageData: NSData): void; + + setInitialWithPosition(position: AEPFloatingButtonPosition): void; + + show(): void; +} + +interface AEPFloatingButtonDelegate { + onDismissWithFloatingButton(): void; + + onPanDetected(): void; + + onShowWithFloatingButton(): void; + + onTapDetected(): void; +} +declare var AEPFloatingButtonDelegate: { + prototype: AEPFloatingButtonDelegate; +}; + +declare const enum AEPFloatingButtonPosition { + Center = 0, + + TopRight = 1, + + TopLeft = 2, +} + +interface AEPFloatingButtonPresentable extends AEPDismissible, AEPShowable { + setButtonImageWithImageData(imageData: NSData): void; + + setInitialWithPosition(position: AEPFloatingButtonPosition): void; +} +declare var AEPFloatingButtonPresentable: { + prototype: AEPFloatingButtonPresentable; +}; + +declare class AEPFullscreenMessage extends NSObject implements AEPFullscreenPresentable, WKNavigationDelegate, WKScriptMessageHandler { + static alloc(): AEPFullscreenMessage; // inherited from NSObject + + static new(): AEPFullscreenMessage; // inherited from NSObject + + settings: AEPMessageSettings; + + readonly debugDescription: string; // inherited from NSObjectProtocol + + readonly description: string; // inherited from NSObjectProtocol + + readonly hash: number; // inherited from NSObjectProtocol + + readonly isProxy: boolean; // inherited from NSObjectProtocol + + readonly superclass: typeof NSObject; // inherited from NSObjectProtocol + + readonly; // inherited from NSObjectProtocol + + class(): typeof NSObject; + + conformsToProtocol(aProtocol: any /* Protocol */): boolean; + + dismiss(): void; + + handleJavascriptMessageWithHandler(name: string, handler: (p1: any) => void): void; + + isEqual(object: any): boolean; + + isKindOfClass(aClass: typeof NSObject): boolean; + + isMemberOfClass(aClass: typeof NSObject): boolean; + + performSelector(aSelector: string): any; + + performSelectorWithObject(aSelector: string, object: any): any; + + performSelectorWithObjectWithObject(aSelector: string, object1: any, object2: any): any; + + respondsToSelector(aSelector: string): boolean; + + retainCount(): number; + + self(): this; + + setAssetMap(map: NSDictionary): void; + + show(): void; + + userContentControllerDidReceiveScriptMessage(userContentController: WKUserContentController, message: WKScriptMessage): void; + + webViewAuthenticationChallengeShouldAllowDeprecatedTLS(webView: WKWebView, challenge: NSURLAuthenticationChallenge, decisionHandler: (p1: boolean) => void): void; + + webViewDecidePolicyForNavigationActionDecisionHandler(webView: WKWebView, navigationAction: WKNavigationAction, decisionHandler: (p1: WKNavigationActionPolicy) => void): void; + + webViewDecidePolicyForNavigationActionPreferencesDecisionHandler(webView: WKWebView, navigationAction: WKNavigationAction, preferences: WKWebpagePreferences, decisionHandler: (p1: WKNavigationActionPolicy, p2: WKWebpagePreferences) => void): void; + + webViewDecidePolicyForNavigationResponseDecisionHandler(webView: WKWebView, navigationResponse: WKNavigationResponse, decisionHandler: (p1: WKNavigationResponsePolicy) => void): void; + + webViewDidCommitNavigation(webView: WKWebView, navigation: WKNavigation): void; + + webViewDidFailNavigationWithError(webView: WKWebView, navigation: WKNavigation, error: NSError): void; + + webViewDidFailProvisionalNavigationWithError(webView: WKWebView, navigation: WKNavigation, error: NSError): void; + + webViewDidFinishNavigation(webView: WKWebView, navigation: WKNavigation): void; + + webViewDidReceiveAuthenticationChallengeCompletionHandler(webView: WKWebView, challenge: NSURLAuthenticationChallenge, completionHandler: (p1: NSURLSessionAuthChallengeDisposition, p2: NSURLCredential) => void): void; + + webViewDidReceiveServerRedirectForProvisionalNavigation(webView: WKWebView, navigation: WKNavigation): void; + + webViewDidStartProvisionalNavigation(webView: WKWebView, navigation: WKNavigation): void; + + webViewNavigationActionDidBecomeDownload(webView: WKWebView, navigationAction: WKNavigationAction, download: WKDownload): void; + + webViewNavigationResponseDidBecomeDownload(webView: WKWebView, navigationResponse: WKNavigationResponse, download: WKDownload): void; + + webViewWebContentProcessDidTerminate(webView: WKWebView): void; +} + +interface AEPFullscreenMessageDelegate { + onDismissFullscreenMessage(message: AEPFullscreenMessage): void; + + onShowFailure(): void; + + onShowFullscreenMessage(message: AEPFullscreenMessage): void; + + overrideUrlLoadFullscreenMessageUrl(message: AEPFullscreenMessage, url: string): boolean; + + webViewDidFinishInitialLoading?(webView: WKWebView): void; +} +declare var AEPFullscreenMessageDelegate: { + prototype: AEPFullscreenMessageDelegate; +}; + +interface AEPFullscreenPresentable extends AEPDismissible, AEPShowable {} +declare var AEPFullscreenPresentable: { + prototype: AEPFullscreenPresentable; +}; + +declare const enum AEPHttpMethod { + Get = 0, + + Post = 1, +} + +declare class AEPLog extends NSObject { + static alloc(): AEPLog; // inherited from NSObject + + static debugWithLabelMessage(label: string, message: string): void; + + static errorWithLabelMessage(label: string, message: string): void; + + static new(): AEPLog; // inherited from NSObject + + static setLogFilter(value: AEPLogLevel): void; + + static traceWithLabelMessage(label: string, message: string): void; + + static warningWithLabelMessage(label: string, message: string): void; + + static logFilter: AEPLogLevel; +} + +declare const enum AEPLogLevel { + Error = 0, + + Warning = 1, + + Debug = 2, + + Trace = 3, +} + +interface AEPLogging { + logWithLevelLabelMessage(level: AEPLogLevel, label: string, message: string): void; +} +declare var AEPLogging: { + prototype: AEPLogging; +}; + +declare const enum AEPMessageAlignment { + Center = 0, + + Left = 1, + + Right = 2, + + Top = 3, + + Bottom = 4, +} + +declare const enum AEPMessageAnimation { + None = 0, + + Left = 1, + + Right = 2, + + Top = 3, + + Bottom = 4, + + Center = 5, + + Fade = 6, +} + +declare const enum AEPMessageGesture { + SwipeUp = 0, + + SwipeDown = 1, + + SwipeLeft = 2, + + SwipeRight = 3, + + BackgroundTap = 4, +} + +declare class AEPMessageSettings extends NSObject { + static alloc(): AEPMessageSettings; // inherited from NSObject + + static new(): AEPMessageSettings; // inherited from NSObject + + readonly parent: any; + + constructor(o: { parent: any }); + + initWithParent(parent: any): this; + + setBackdropColor(color: string): AEPMessageSettings; +} + +interface AEPMessagingDelegate { + onDismiss(message: AEPShowable): void; + + onShow(message: AEPShowable): void; + + shouldShowMessage(message: AEPShowable): boolean; + + urlLoadedByMessage?(url: NSURL, message: AEPShowable): void; +} +declare var AEPMessagingDelegate: { + prototype: AEPMessagingDelegate; +}; + +declare class AEPNetworkRequest extends NSObject { + static alloc(): AEPNetworkRequest; // inherited from NSObject + + static new(): AEPNetworkRequest; // inherited from NSObject +} + +declare var AEPServicesVersionNumber: number; + +declare var AEPServicesVersionString: interop.Reference; + +interface AEPShowable { + show(): void; +} +declare var AEPShowable: { + prototype: AEPShowable; +}; + +interface AEPUIServiceProtocol { + createFloatingButtonWithListener(listener: AEPFloatingButtonDelegate): AEPFloatingButtonPresentable; + + createFullscreenMessageWithPayloadListenerIsLocalImageUsed(payload: string, listener: AEPFullscreenMessageDelegate, isLocalImageUsed: boolean): AEPFullscreenPresentable; + + createFullscreenMessageWithPayloadListenerIsLocalImageUsedSettings?(payload: string, listener: AEPFullscreenMessageDelegate, isLocalImageUsed: boolean, settings: AEPMessageSettings): AEPFullscreenPresentable; +} +declare var AEPUIServiceProtocol: { + prototype: AEPUIServiceProtocol; +}; diff --git a/packages/nativescript-appdynamics/platforms/ios/Podfile b/packages/nativescript-appdynamics/platforms/ios/Podfile index d446b04..632256c 100644 --- a/packages/nativescript-appdynamics/platforms/ios/Podfile +++ b/packages/nativescript-appdynamics/platforms/ios/Podfile @@ -1,3 +1,3 @@ -platform :ios, '13.0' +platform :ios, '14.0' use_frameworks! pod 'AppDynamicsAgent' diff --git a/packages/nativescript-iadvize/index.android.ts b/packages/nativescript-iadvize/index.android.ts index 7cff71b..40e6471 100644 --- a/packages/nativescript-iadvize/index.android.ts +++ b/packages/nativescript-iadvize/index.android.ts @@ -2,6 +2,7 @@ import { ChatConfiguration, IAdvizeCommon } from './common'; import { Application, Color, ImageSource, Utils } from '@nativescript/core'; import { Observable } from 'rxjs'; import lazy from '@nativescript/core/utils/lazy'; +import { getApplication } from '@nativescript/core/utils/android'; const IAdvizeSDK = lazy(() => { const clazz = com.iadvize.conversation.sdk.IAdvizeSDK.class; @@ -100,6 +101,12 @@ export class IAdvize extends IAdvizeCommon { targetingController.activateTargetingRule(this.buildTargetingRule(targetingRuleUUID)); } + public registerUserNavigation(targetingRuleUUID: string) { + const targetingController = IAdvizeSDK().getTargetingController(); + const navOption = new com.iadvize.conversation.sdk.feature.targeting.NavigationOption.ActivateNewRule(this.buildTargetingRule(targetingRuleUUID)); + targetingController.registerUserNavigation(navOption); + } + public logout() { com.iadvize.conversation.sdk.IAdvizeSDK.logout( new com.iadvize.conversation.sdk.IAdvizeSDK.Callback({ @@ -200,6 +207,27 @@ export class IAdvize extends IAdvizeCommon { com.iadvize.conversation.sdk.IAdvizeSDK.setLogLevel(this.logLevelFrom(logLevel)); } + public isActiveTargetingRuleAvailable(): boolean { + if (!IAdvizeSDK()) { + return false; + } + + return IAdvizeSDK().getTargetingController().isActiveTargetingRuleAvailable(); + } + + public hasOngoingConversation(): boolean { + if (!IAdvizeSDK()) { + return false; + } + + const ongoingConversation = IAdvizeSDK().getConversationController().ongoingConversation(); + if (!ongoingConversation) { + return false; + } + + return ongoingConversation.getConversationId()?.trim().length !== 0; + } + private logLevelFrom(logLevel: number): com.iadvize.conversation.sdk.feature.logger.Logger.Level { switch (logLevel) { case 0: @@ -218,7 +246,7 @@ export class IAdvize extends IAdvizeCommon { if (didInit) { return; } - com.iadvize.conversation.sdk.IAdvizeSDK.initiate(Utils.android.getApplicationContext()); + com.iadvize.conversation.sdk.IAdvizeSDK.initiate(Utils.android.getApplicationContext() as any); didInit = true; } } diff --git a/packages/nativescript-iadvize/index.ios.ts b/packages/nativescript-iadvize/index.ios.ts index 3882e6c..60f3fe8 100644 --- a/packages/nativescript-iadvize/index.ios.ts +++ b/packages/nativescript-iadvize/index.ios.ts @@ -71,6 +71,12 @@ export class IAdvize extends IAdvizeCommon { IAdvizeSDK.shared.targetingController.activateTargetingRuleWithTargetingRule(this.buildTargetingRule(targetingRuleUUID)); } + public registerUserNavigation(targetingRuleUUID: string) { + const navOption = NavigationOption.new(); + navOption.initWithNewTargetingRuleId(this.buildTargetingRule(targetingRuleUUID)); + IAdvizeSDK.shared.targetingController.registerUserNavigationWithNavigationOption(navOption); + } + public logout() { IAdvizeSDK.shared.logoutWithCompletion(() => { // logged out @@ -138,6 +144,19 @@ export class IAdvize extends IAdvizeCommon { IAdvizeSDK.shared.setLogLevel(this.logLevelFrom(logLevel)); } + public isActiveTargetingRuleAvailable(): boolean { + return IAdvizeSDK.shared.targetingController.isActiveTargetingRuleAvailable; + } + + public hasOngoingConversation(): boolean { + const ongoingConversation = IAdvizeSDK.shared.conversationController.ongoingConversation(); + if (!ongoingConversation) { + return false; + } + + return ongoingConversation.conversationId?.UUIDString?.trim().length !== 0; + } + private logLevelFrom(logLevel: number): LoggerLogLevel { switch (logLevel) { case 0: diff --git a/packages/nativescript-iadvize/package.json b/packages/nativescript-iadvize/package.json index 56a9e86..e96413f 100644 --- a/packages/nativescript-iadvize/package.json +++ b/packages/nativescript-iadvize/package.json @@ -1,6 +1,6 @@ { "name": "@essent/nativescript-iadvize", - "version": "2.10.0", + "version": "2.10.1", "description": "iAdvize plugin for NativeScript.", "main": "index", "typings": "index.d.ts", diff --git a/packages/nativescript-iadvize/platforms/ios/Podfile b/packages/nativescript-iadvize/platforms/ios/Podfile index d834a90..d1f79c8 100644 --- a/packages/nativescript-iadvize/platforms/ios/Podfile +++ b/packages/nativescript-iadvize/platforms/ios/Podfile @@ -1,9 +1,9 @@ -pod 'iAdvize', '2.12.1' +pod 'iAdvize', '2.13.0' post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| - config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0' config.build_settings['BUILD_LIBRARY_FOR_DISTRIBUTION'] = 'YES' end end diff --git a/packages/nativescript-iadvize/typings/objc!IAdvizeConversationSDK.d.ts b/packages/nativescript-iadvize/typings/objc!IAdvizeConversationSDK.d.ts index 067690f..d269480 100644 --- a/packages/nativescript-iadvize/typings/objc!IAdvizeConversationSDK.d.ts +++ b/packages/nativescript-iadvize/typings/objc!IAdvizeConversationSDK.d.ts @@ -1103,6 +1103,8 @@ declare const enum LoggerLogLevel { Error = 3, Success = 4, + + None = 5, } declare class NavigationOption extends NSObject { @@ -1141,6 +1143,8 @@ declare class OngoingConversation extends NSObject { static alloc(): OngoingConversation; // inherited from NSObject static new(): OngoingConversation; // inherited from NSObject + + conversationId: NSUUID; } declare class SDKLanguageOption extends NSObject { diff --git a/packages/nativescript-medallia/package.json b/packages/nativescript-medallia/package.json index ac82dd0..30df519 100644 --- a/packages/nativescript-medallia/package.json +++ b/packages/nativescript-medallia/package.json @@ -1,6 +1,6 @@ { "name": "@essent/nativescript-medallia", - "version": "4.1.1", + "version": "4.2.0", "description": "Nativescript plugin for medallia integration.", "main": "index", "typings": "index.d.ts", diff --git a/packages/nativescript-medallia/platforms/android/android-sdk-4.1.0.aar b/packages/nativescript-medallia/platforms/android/android-sdk-4.1.0.aar deleted file mode 100644 index 821c386..0000000 Binary files a/packages/nativescript-medallia/platforms/android/android-sdk-4.1.0.aar and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/android/android-sdk-4.2.0.aar b/packages/nativescript-medallia/platforms/android/android-sdk-4.2.0.aar new file mode 100644 index 0000000..a58b614 Binary files /dev/null and b/packages/nativescript-medallia/platforms/android/android-sdk-4.2.0.aar differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/Info.plist b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/Info.plist index 4477f2a..c2e4664 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/Info.plist +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/Info.plist @@ -6,13 +6,12 @@ LibraryIdentifier - ios-arm64_i386_x86_64-simulator + ios-arm64_x86_64-simulator LibraryPath MedalliaDigitalSDK.framework SupportedArchitectures arm64 - i386 x86_64 SupportedPlatform @@ -22,13 +21,12 @@ LibraryIdentifier - ios-arm64_armv7 + ios-arm64 LibraryPath MedalliaDigitalSDK.framework SupportedArchitectures arm64 - armv7 SupportedPlatform ios diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Assets.car b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Assets.car new file mode 100644 index 0000000..4931243 Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Assets.car differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h new file mode 100644 index 0000000..ccd910b --- /dev/null +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h @@ -0,0 +1,848 @@ +#if 0 +#elif defined(__arm64__) && __arm64__ +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +#ifndef MEDALLIADIGITALSDK_SWIFT_H +#define MEDALLIADIGITALSDK_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 Foundation; +@import ObjectiveC; +@import UserNotifications; +#endif + +#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="MedalliaDigitalSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +#if defined(__OBJC__) + + +typedef SWIFT_ENUM(NSInteger, MDAppearanceMode, open) { + MDAppearanceModeLight = 0, + MDAppearanceModeDark = 1, + MDAppearanceModeUnknown = 2, +}; + +@class MDCustomInterceptDelegateData; + +SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK25MDCustomInterceptDelegate_") +@protocol MDCustomInterceptDelegate +@optional +/// The event is triggered when target evaluation finished succefully +/// \param customInterceptDelegateData MDCustomInterceptDelegateData object that contains: +///
    +///
  • +/// formPreloadTimestamp: represents the epoch time in milliseconds when the specific from preload has happened. +///
  • +///
  • +/// targetingEvaluationTimestamp: represents the epoch time in milliseconds when the specific targeting evaluation has happened. +///
  • +///
  • +/// engagementId: represents the engagement id as it appears in the digital command center under forms section. +///
  • +///
  • +/// engagementType: MDEngagementType object that represent the engagement type. +///
  • +///
  • +/// payload: MDCustomInterceptPayload object that contains the intercept payload. +///
  • +///
+/// +- (void)targetEvaluationDidSuccessWithCustomInterceptDelegateData:(MDCustomInterceptDelegateData * _Nonnull)customInterceptDelegateData; +@end + +@class NSString; +enum MDEngagementType : NSInteger; +@class MDCustomInterceptPayload; + +SWIFT_CLASS("_TtC18MedalliaDigitalSDK29MDCustomInterceptDelegateData") +@interface MDCustomInterceptDelegateData : NSObject +@property (nonatomic) double formPreloadTimestamp; +@property (nonatomic) double targetingEvaluationTimestamp; +@property (nonatomic, copy) NSString * _Nonnull engagementId; +@property (nonatomic) enum MDEngagementType engagementType; +@property (nonatomic, strong) MDCustomInterceptPayload * _Nonnull payload; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + + +SWIFT_CLASS("_TtC18MedalliaDigitalSDK24MDCustomInterceptPayload") +@interface MDCustomInterceptPayload : NSObject +@property (nonatomic, copy) NSString * _Nullable titleText; +@property (nonatomic, copy) NSString * _Nullable subtitleText; +@property (nonatomic, copy) NSString * _Nullable provideFeedbackText; +@property (nonatomic, copy) NSString * _Nullable declineText; +@property (nonatomic, copy) NSString * _Nullable deferText; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +/// There are 2 types of SDK engagements: +///
    +///
  • +/// form: Intercept will launch a form survey to collect user feedback +///
  • +///
  • +/// appRating: Intercept will be prompted the user to rate the app in AppStore +///
  • +///
+typedef SWIFT_ENUM(NSInteger, MDEngagementType, open) { + MDEngagementTypeForm = 0, + MDEngagementTypeAppRating = 1, +}; + + +/// This class depicts an error arise from MedalliaDigital class +SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MDExternalError") +@interface MDExternalError : NSObject +///
    +///
  • +/// message: error description message +///
  • +///
+@property (nonatomic) NSInteger statusCode; +///
    +///
  • +/// statusCode: error status code +///
  • +///
+@property (nonatomic, copy) NSString * _Nonnull message; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +@class MDFeedbackDelegateData; + +/// A delegate for receiving submitted form payload. This API method allows listening to in-form feedback content submitted by user. +SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK18MDFeedbackDelegate_") +@protocol MDFeedbackDelegate +@optional +/// The event is triggered when feedback was collected by SDK after “Submit” button was selected. +/// \param feedbackDelegateData DataMDFeedbackDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// feedbackUUID: represents the feedback UUID as it appears in the command center under inbox section, it is the id of the form submitted by user. +///
  • +///
  • +/// payload: a string that contains the submitted feedback components (currently not text and image components) and the user’s feedback UUID, it is in json format. +///
  • +///
+/// +- (void)feedbackDidSubmitWithFeedbackDelegateData:(MDFeedbackDelegateData * _Nonnull)feedbackDelegateData; +@end + + +SWIFT_CLASS("_TtC18MedalliaDigitalSDK22MDFeedbackDelegateData") +@interface MDFeedbackDelegateData : NSObject +@property (nonatomic) double timestamp; +@property (nonatomic, copy) NSString * _Nonnull engagementId; +@property (nonatomic, copy) NSString * _Nonnull feedbackClientCorrelationId; +@property (nonatomic, copy) NSDictionary * _Nonnull payload; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +@class MDFormDelegateData; + +/// A delegate for receiving a form displayed information. This API method allows listening to form related events, e.g. form was submitted. +SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK14MDFormDelegate_") +@protocol MDFormDelegate +@optional +/// This event is triggered when user submitted for. +/// \param formDelegateData MDFormDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// formId: represents the form id as it appears in the digital command center under forms section. +///
  • +///
  • +/// formTriggerType: MDFormTriggerType +///
  • +///
+/// +- (void)formDidSubmitWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; +/// This event is triggered when user closed form without submitting feedback. +/// \param formDelegateData MDFormDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// formId: represents the form id as it appears in the digital command center under forms section. +///
  • +///
  • +/// formTriggerType: MDFormTriggerType +///
  • +///
+/// +- (void)formDidDismissWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; +/// This event is triggered when SDK closes form (and not user) after submitting feedback. +/// \param formDelegateData MDFormDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// formId: represents the form id as it appears in the digital command center under forms section. +///
  • +///
  • +/// formTriggerType: MDFormTriggerType +///
  • +///
+/// +- (void)formDidCloseWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; +/// This event is triggered when a form is displayed via code form or invitation form. +/// \param formDelegateData MDFormDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// formId: represents the form id as it appears in the digital command center under forms section. +///
  • +///
  • +/// formTriggerType: MDFormTriggerType +///
  • +///
  • +/// formLocaleSet: String? +///
  • +///
  • +/// formLocaleDisplay: String? +///
  • +///
+/// +- (void)formDidDisplayWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; +/// This event is triggered when form includes blocked external links. +/// \param formDelegateData MDFormDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// formId: represents the form id as it appears in the digital command center under forms section. +///
  • +///
  • +/// formTriggerType: MDFormTriggerType +///
  • +///
  • +/// blockedUrl: external url that has been blocked. +///
  • +///
+/// +- (void)formDidBlockExternalUrlWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; +/// This event is triggered when link was selected. +/// \param formDelegateData MDFormDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// formId: represents the form id as it appears in the digital command center under forms section. +///
  • +///
  • +/// formTriggerType: MDFormTriggerType +///
  • +///
  • +/// url: external url that has been selected. +///
  • +///
  • +/// isBlocked: if the url above was blocked then it’s true, otherwise it’s false +///
  • +///
+/// +- (void)formDidLinkSelectWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; +/// This event is triggered when the thank you prompt was displayed after the form was submitted +/// \param formDelegateData MDFormDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// formId: represents the form id as it appears in the digital command center under forms section. +///
  • +///
  • +/// formTriggerType: MDFormTriggerType +///
  • +///
+/// +- (void)formDidThankYouPromptWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; +@end + +enum MDFormTriggerType : NSInteger; + +SWIFT_CLASS("_TtC18MedalliaDigitalSDK18MDFormDelegateData") +@interface MDFormDelegateData : NSObject +@property (nonatomic) double timestamp; +@property (nonatomic, copy) NSString * _Nonnull engagementId; +@property (nonatomic) enum MDFormTriggerType formTriggerType; +@property (nonatomic, copy) NSString * _Nullable url; +@property (nonatomic) BOOL isBlocked; +@property (nonatomic, copy) NSString * _Nullable formLocaleSet; +@property (nonatomic, copy) NSString * _Nullable formLocaleDisplay; +@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceSet; +@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceDisplay; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +/// There are 2 types of forms, distinguished by their trigger origin: +///
    +///
  • +/// code: Code triggers are to be used as the passive trigger method when the user actively looks to leave feedback, usually a “feedback” menu option. This form is triggered by the app calling MedalliaDigital.showForm() +///
  • +///
  • +/// invite: Invitation triggers, also known as invites or intercepts, are to be used as the proactive trigger method when the app looks to receive contextual feedback using the SDK invite flavours (native alert, SDK banner etc.). This form is triggered automatically by the SDK when setting up survey on the Digital Command Center. +///
  • +///
+typedef SWIFT_ENUM(NSInteger, MDFormTriggerType, open) { +/// Code trigger type + MDFormTriggerTypeCode = 0, +/// Invitation trigger type + MDFormTriggerTypeInvite = 1, +}; + +typedef SWIFT_ENUM(NSInteger, MDInterceptActionType, open) { + MDInterceptActionTypeAccepted = 0, + MDInterceptActionTypeDeclined = 1, + MDInterceptActionTypeDeferred = 2, + MDInterceptActionTypeSkipped = 3, +}; + +@class MDInterceptDelegateData; + +/// A delegate for receiving an intercept displayed information. Allows listening to intercepts related events. i.e. Actions taken by user in Form Invitations and App Rating prompts (App Ratings is coming soon). +SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK19MDInterceptDelegate_") +@protocol MDInterceptDelegate +@optional +/// This event is triggered when intercept was displayed to end user. +/// \param interceptDelegateData MDInterceptDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// engagementId: represents the engagement id as it appears in the digital command center under forms section +///
  • +///
  • +/// engagementType: MDEngagementType +///
  • +///
+/// +- (void)interceptDidDisplayWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; +/// This event is triggered when intercept was accepted by user from alert (usually “Provide Feedback”) or SDK banner. +/// \param interceptDelegateData MDInterceptDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// engagementId: represents the engagement id as it appears in the digital command center under forms section +///
  • +///
  • +/// engagementType: MDEngagementType +///
  • +///
+/// +- (void)interceptDidAcceptWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; +/// This event is triggered when intercept was declined by user from alert (usually “No Thanks”) or SDK banner. +/// \param interceptDelegateData MDInterceptDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// engagementId: represents the engagement id as it appears in the digital command center under forms section +///
  • +///
  • +/// engagementType: MDEngagementType +///
  • +///
+/// +- (void)interceptDidDeclineWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; +/// This event is triggered when intercept was deferred by user from alert (usually “Maybe Later”) or SDK banner. +/// \param interceptDelegateData MDInterceptDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// engagementId: represents the engagement id as it appears in the digital command center under forms section +///
  • +///
  • +/// engagementType: MDEngagementType +///
  • +///
+/// +- (void)interceptDidDeferWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; +/// This event is triggered when intercept was closed bty the app +/// \param interceptDelegateData MDInterceptDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// engagementId: represents the engagement id as it appears in the digital command center under forms section +///
  • +///
  • +/// engagementType: MDEngagementType +///
  • +///
+/// +- (void)interceptDidCloseWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; +/// This event is triggered when SKStoreReviewController was triggered by the SDK. +/// \param interceptDelegateData MDInterceptDelegateData object that contains: +///
    +///
  • +/// timestamp: represents the epoch time in milliseconds when the specific event has happened. +///
  • +///
  • +/// engagementId: represents the engagement id as it appears in the digital command center under forms section +///
  • +///
+/// +- (void)interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; +@end + + +SWIFT_CLASS("_TtC18MedalliaDigitalSDK23MDInterceptDelegateData") +@interface MDInterceptDelegateData : NSObject +@property (nonatomic) double timestamp; +@property (nonatomic, copy) NSString * _Nonnull engagementId; +@property (nonatomic) enum MDEngagementType engagementType; +@property (nonatomic) enum MDAppearanceMode appearanceSet; +@property (nonatomic) enum MDAppearanceMode appearanceDisplay; +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +@end + +/// | MDLogLevel | Description | +/// |——————|––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––| +/// | MDLogLevel.OFF | Turns off the SDK logs. As mentioned above, this API should not be integrated in production apps. Using this log level is also not allowed. | +/// | MDLogLevel.FATAL | Will print only fatal logs. e.g. In case a fatal error occurred, the SDK is likely to crash. | +/// | MDLogLevel.ERROR | Will print error logs and will also include the levels above. e.g. An error occurred. It is likely the error is recoverable and available info about what happened will output to console. | +/// | MDLogLevel.WARN | Will print warn logs and will also include the levels above. e.g. a warning message which may eventually indicate on a possible error. | +/// | MDLogLevel.INFO | Will print info logs and will also include the levels above. e.g. a standard info message. | +/// | MDLogLevel.DEBUG | Will print debug logs and will also include the levels above. e.g. a standard debug message. | +typedef SWIFT_ENUM(NSInteger, MDLogLevel, open) { + MDLogLevelOff = 0, + MDLogLevelFatal = 1, + MDLogLevelError = 2, + MDLogLevelWarn = 3, + MDLogLevelInfo = 4, + MDLogLevelDebug = 5, +}; + +typedef SWIFT_ENUM(NSInteger, MDSDKFrameworkType, open) { + MDSDKFrameworkTypeNative = 0, + MDSDKFrameworkTypeReactNative = 1, + MDSDKFrameworkTypeCordova = 2, + MDSDKFrameworkTypeFlutter = 3, +}; + + +/// MedalliaDigital is the main component for the Medallia sdk. +/// It includes the complete set of tools required in order to work with Medallia sdk. +/// Calling sdkInit() method is mandatory before accessing any other method in this API. +SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") +@interface MedalliaDigital : NSObject +/// Private constructor to prevent others from using the default ‘()’ initializer for this class, as this is a singleton. +- (nonnull instancetype)init SWIFT_UNAVAILABLE; ++ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); +/// This method initializes the SDK and by doing so authenticates the app, and retrieves configuration elements from Medallia Digital. +/// This method is mandatory in order to start Medallia SDK +/// All the following vars are mandatory for init to run. +/// \param token Medallia Digital developer token (can be found in the account section of your Medallia Digital dashboard). Note that this key is assigned per application. +/// +/// \param success Success Closure +/// +/// \param failure Failure Closure +/// ++ (void)sdkInitWithToken:(NSString * _Nonnull)token success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// The SDK enables the app to set custom parameters of several types. Define specific parameter to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. +/// The SDK supports the following types: String, Integer(or int), Long(or long), Double(or double), Float(or float), Boolean(or bool) +/// In case the value is not one of these primitive types, custom parameter won’t be saved. +/// value can’t be null. +/// \param name custom parameter name +/// +/// \param value - custom parameter value +/// ++ (void)setCustomParameterWithName:(NSString * _Nonnull)name value:(id _Nonnull)value; +/// The SDK enables the app to set custom parameters of several types. Define multiple parameters to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. +/// For more information, go to : setCustomParameter() +/// \param parameters map of ‘name’(of type String) and ‘value’(of a primitive type). +/// ++ (void)setCustomParameters:(NSDictionary * _Nonnull)parameters; +/// Displaying a form on demand, usually a “Feedback” button in app menu. The SDK must be initialized for form to be displayed. The ‘ShowForm’ API can be called in parallel with the init API. +/// \param formId form id to determine which form should be shown. +/// +/// \param success Success Closure +/// +/// \param failure Failure Closure +/// ++ (void)showForm:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// Enables the app to launch forms directly from push notifications. Using this API, forms are properly opened once the pushed notification is selected. +/// \param formId form id to determine which form should be shown. +/// +/// \param success Success Closure +/// +/// \param failure Failure Closure +/// ++ (void)handleNotification:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// Setting a delegate in order to receive form displayed information. This API method allows listening to form related events, e.g. form was submitted. +/// \param formDelegate MDFormDelegate +/// ++ (void)setFormDelegate:(id _Nullable)formDelegate; +/// Setting a delegate in order to receive intercept information (Alert or Banner displayed asking the user whether he/she wants to open form/app rating/ any other engagement type object) +/// \param interceptDelegate MDInterceptDelegate +/// ++ (void)setInterceptDelegate:(id _Nullable)interceptDelegate; +/// Setting a delegate in order to receive feedback payload. This API method allows listening to in-form feedback content submitted by user. +/// \param feedbackDelegate MDFeedbackDelegate +/// ++ (void)setFeedbackDelegate:(id _Nullable)feedbackDelegate; +/// Setting a delegate in order to receive custom intercept payload. This API method allows listening to custom intercept triggering. +/// \param customInterceptDelegate MDCustomInterceptDelegate +/// ++ (void)setCustomInterceptDelegate:(id _Nonnull)customInterceptDelegate; +/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with disableIntercept() as one method disables the intercept and the other re-enables it. +///
    +///
  • +/// This API will not effect showForm API functionality. +/// Customers may consider using this functionality during critical flows such as payment, live support chats, phone calls etc. +/// Intercept is enabled by default. +/// When called, these operations store the values in the application memory i.e. the setting remains available as long as the application is alive. +/// Important note - this API will not affect the showForm functionality +///
  • +///
++ (void)enableIntercept; +/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with enableIntercept() as one method disables the intercept and the other re-enables it. +///
    +///
  • +/// This API will not effect showForm API functionality. +/// For resuming intercept functionality, go to enableIntercept() +/// Upon every new sdkInit(token: String, success: @escaping () -> Void, failure: @escaping (_ error: MDExternalError) -> Void), the intercept mechanism will be enabled(ergo - enabled by default). +///
  • +///
++ (void)disableIntercept; +/// Set log level (of type MDLogLevel) to be printed in the console +/// The logs that will be printed will be determined by the provided log level +/// Logs will be printed from this log level and above +/// Default log level in the SDK is .off +/// Note: if you choose log level = .off, there will be no logs at all +/// It is highly recommended to get log level .off when App is in production/Appstore +/// \param logLevel log level to determine which logs will be printed to the console +/// ++ (void)setLogLevel:(enum MDLogLevel)logLevel; +/// Stop SDK API will stop the SDK functionality. +/// In case the API is been called with #clearData parameter true, personalized SDK data will be cleared. +/// \param clearData clear data determines if the personalized data should be cleared in addition to stopping the SDK +/// ++ (void)stopSDKWithClearData:(BOOL)clearData; +/// Revert Stop SDK API will revive the SDK functionality (if it is stopped). +/// In the next session the SDK functionality will start working as expected. ++ (void)revertStopSDK; +/// Set the SDK Frameowrk origin of the app +/// \param mdSdkFrameworkType MDSdkFrameworkType (Native, React Native or Cordova) +/// ++ (void)setSdkFramework:(enum MDSDKFrameworkType)mdSdkFrameworkType; +/// Set the SDK Locale +/// \param locale String?, nil to unset locale +/// ++ (void)updateCustomLocale:(NSString * _Nullable)locale success:(void (^ _Nonnull)(NSString * _Nullable))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// Custom Intercept Trigger +/// \param engagementId String +/// +/// \param actionType MDInterceptActionType +/// +/// \param failure Failure Closure +/// ++ (void)customInterceptTriggerWithEngagementId:(NSString * _Nonnull)engagementId actionType:(enum MDInterceptActionType)actionType failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// Set Appearance Mode +/// \param appearanceMode MDAppearanceMode (light or dark mode) +/// ++ (void)setCustomAppearance:(enum MDAppearanceMode)appearanceMode; +/// Set Debug Form +/// \param debug Bool true to debug +/// ++ (void)setDebugForm:(BOOL)debug; +/// Close Engagement +/// \param success suceess block +/// +/// \param failure failure block +/// ++ (void)closeEngagementWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// Set User ID +/// \param userId String +/// ++ (void)setUserId:(NSString * _Nullable)userId; +@end + + + + + + + + + +@interface UNNotificationContent (SWIFT_EXTENSION(MedalliaDigitalSDK)) +@property (nonatomic, readonly) BOOL isMedalliaDigitalSDKNotificationContent; +@property (nonatomic, readonly, copy) NSString * _Nullable medalliaDigitalSDKEngagementId; +@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/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Info.plist b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Info.plist new file mode 100644 index 0000000..fd059f0 Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Info.plist differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/MedalliaDigitalSDK b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/MedalliaDigitalSDK new file mode 100644 index 0000000..2dad2b8 Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/MedalliaDigitalSDK differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.abi.json b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.abi.json new file mode 100644 index 0000000..68fa1af --- /dev/null +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.abi.json @@ -0,0 +1,20063 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MedalliaDigital", + "printedName": "MedalliaDigital", + "children": [ + { + "kind": "Function", + "name": "sdkInit", + "printedName": "sdkInit(token:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)sdkInitWithToken:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C7sdkInit5token7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomParameter", + "printedName": "setCustomParameter(name:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomParameterWithName:value:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18setCustomParameter4name5valueySS_yptFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomParameters", + "printedName": "setCustomParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomParameters:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setCustomParametersyySDySSypGFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showForm", + "printedName": "showForm(_:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)showForm:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C8showForm_7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleNotification", + "printedName": "handleNotification(_:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)handleNotification:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18handleNotification_7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setFormDelegate", + "printedName": "setFormDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFormDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormDelegate", + "printedName": "MedalliaDigitalSDK.MDFormDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setFormDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15setFormDelegateyyAA06MDFormF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInterceptDelegate", + "printedName": "setInterceptDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptDelegate", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setInterceptDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C20setInterceptDelegateyyAA011MDInterceptF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setFeedbackDelegate", + "printedName": "setFeedbackDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegate", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setFeedbackDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setFeedbackDelegateyyAA010MDFeedbackF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomInterceptDelegate", + "printedName": "setCustomInterceptDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegate", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomInterceptDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C26setCustomInterceptDelegateyyAA08MDCustomfG0_pFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableIntercept", + "printedName": "enableIntercept()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)enableIntercept", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15enableInterceptyyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableIntercept", + "printedName": "disableIntercept()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)disableIntercept", + "mangledName": "$s18MedalliaDigitalSDK0aB0C16disableInterceptyyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLogLevel", + "printedName": "setLogLevel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setLogLevel:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C11setLogLevelyyAA05MDLogF0OFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSDK", + "printedName": "stopSDK(clearData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)stopSDKWithClearData:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C04stopC09clearDataySb_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "revertStopSDK", + "printedName": "revertStopSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)revertStopSDK", + "mangledName": "$s18MedalliaDigitalSDK0aB0C010revertStopC0yyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSdkFramework", + "printedName": "setSdkFramework(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setSdkFramework:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15setSdkFrameworkyyAA18MDSDKFrameworkTypeOFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateCustomLocale", + "printedName": "updateCustomLocale(_:success:failure:)", + "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" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)updateCustomLocale:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18updateCustomLocale_7success7failureySSSg_yAGcyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "customInterceptTrigger", + "printedName": "customInterceptTrigger(engagementId:actionType:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)customInterceptTriggerWithEngagementId:actionType:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C22customInterceptTrigger12engagementId10actionType7failureySS_AA017MDInterceptActionJ0OyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomAppearance", + "printedName": "setCustomAppearance(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomAppearance:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setCustomAppearanceyyAA16MDAppearanceModeOFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDebugForm", + "printedName": "setDebugForm(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setDebugForm:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C12setDebugFormyySbFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closeEngagement", + "printedName": "closeEngagement(success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)closeEngagementWithSuccess:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15closeEngagement7success7failureyyyc_yAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUserId", + "printedName": "setUserId(_:)", + "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": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setUserId:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C9setUserIdyySSSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital", + "mangledName": "$s18MedalliaDigitalSDK0aB0C", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "RawDocComment", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFeedbackDelegate", + "printedName": "MDFeedbackDelegate", + "children": [ + { + "kind": "Function", + "name": "feedbackDidSubmit", + "printedName": "feedbackDidSubmit(feedbackDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegateData", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate(im)feedbackDidSubmitWithFeedbackDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK18MDFeedbackDelegateP17feedbackDidSubmit0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFeedbackDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "feedbackDidSubmitWithFeedbackDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate", + "mangledName": "$s18MedalliaDigitalSDK18MDFeedbackDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "zlib", + "printedName": "zlib", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormDelegateData", + "printedName": "MDFormDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formTriggerType", + "printedName": "formTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formTriggerType", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formTriggerType", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormTriggerType:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0OvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)url", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)url", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setUrl:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isBlocked", + "printedName": "isBlocked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)isBlocked", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)isBlocked", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setIsBlocked:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formLocaleSet", + "printedName": "formLocaleSet", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formLocaleSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formLocaleSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormLocaleSet:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formLocaleDisplay", + "printedName": "formLocaleDisplay", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formLocaleDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formLocaleDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormLocaleDisplay:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formHeaderAppearanceSet", + "printedName": "formHeaderAppearanceSet", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formHeaderAppearanceSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formHeaderAppearanceSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormHeaderAppearanceSet:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formHeaderAppearanceDisplay", + "printedName": "formHeaderAppearanceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formHeaderAppearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formHeaderAppearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormHeaderAppearanceDisplay:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreFoundation", + "printedName": "CoreFoundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDExternalError", + "printedName": "MDExternalError", + "children": [ + { + "kind": "Var", + "name": "statusCode", + "printedName": "statusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(py)statusCode", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC", "RawDocComment"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)statusCode", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)setStatusCode:", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivM", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(py)message", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC", "RawDocComment"], + "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@MedalliaDigitalSDK@objc(cs)MDExternalError(im)message", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)setMessage:", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK15MDExternalErrorC7messageSSvM", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)init", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIDevice", + "printedName": "UIKit.UIDevice", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "JavaScriptCore", + "printedName": "JavaScriptCore", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormDelegate", + "printedName": "MDFormDelegate", + "children": [ + { + "kind": "Function", + "name": "formDidSubmit", + "printedName": "formDidSubmit(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidSubmitWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP13formDidSubmit0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidSubmitWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidDismiss", + "printedName": "formDidDismiss(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidDismissWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP14formDidDismiss0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidDismissWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidClose", + "printedName": "formDidClose(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidCloseWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP12formDidClose0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidCloseWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidDisplay", + "printedName": "formDidDisplay(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidDisplayWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP14formDidDisplay0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidDisplayWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidBlockExternalUrl", + "printedName": "formDidBlockExternalUrl(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidBlockExternalUrlWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP23formDidBlockExternalUrl0fE4DatayAA0deK0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidBlockExternalUrlWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidLinkSelect", + "printedName": "formDidLinkSelect(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidLinkSelectWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP17formDidLinkSelect0fE4DatayAA0deJ0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidLinkSelectWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidThankYouPrompt", + "printedName": "formDidThankYouPrompt(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidThankYouPromptWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP21formDidThankYouPrompt0fE4DatayAA0deK0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidThankYouPromptWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptActionType", + "printedName": "MDInterceptActionType", + "children": [ + { + "kind": "Var", + "name": "accepted", + "printedName": "accepted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeAccepted", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8acceptedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "declined", + "printedName": "declined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeDeclined", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8declinedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "deferred", + "printedName": "deferred", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeDeferred", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8deferredyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "skipped", + "printedName": "skipped", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeSkipped", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO7skippedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "PreviewAppBridgeDelegate", + "printedName": "PreviewAppBridgeDelegate", + "children": [ + { + "kind": "Function", + "name": "formDidClose", + "printedName": "formDidClose()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP12formDidCloseyyF", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP12formDidCloseyyF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.PreviewAppBridgeDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidSubmit", + "printedName": "formDidSubmit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP13formDidSubmityyF", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP13formDidSubmityyF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.PreviewAppBridgeDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptDelegate", + "printedName": "MDInterceptDelegate", + "children": [ + { + "kind": "Function", + "name": "interceptDidDisplay", + "printedName": "interceptDidDisplay(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDisplayWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP19interceptDidDisplay0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDisplayWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidAccept", + "printedName": "interceptDidAccept(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidAcceptWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP18interceptDidAccept0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidAcceptWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidDecline", + "printedName": "interceptDidDecline(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDeclineWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP19interceptDidDecline0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDeclineWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidDefer", + "printedName": "interceptDidDefer(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDeferWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP17interceptDidDefer0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDeferWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidClose", + "printedName": "interceptDidClose(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidCloseWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP17interceptDidClose0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidCloseWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidTriggerSKStoreReviewController", + "printedName": "interceptDidTriggerSKStoreReviewController(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP42interceptDidTriggerSKStoreReviewController0fE4DatayAA0deL0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptDelegate", + "printedName": "MDCustomInterceptDelegate", + "children": [ + { + "kind": "Function", + "name": "targetEvaluationDidSuccess", + "printedName": "targetEvaluationDidSuccess(customInterceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate(im)targetEvaluationDidSuccessWithCustomInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK25MDCustomInterceptDelegateP26targetEvaluationDidSuccess06customeF4DatayAA0defL0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDCustomInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "targetEvaluationDidSuccessWithCustomInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate", + "mangledName": "$s18MedalliaDigitalSDK25MDCustomInterceptDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFeedbackDelegateData", + "printedName": "MDFeedbackDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "feedbackClientCorrelationId", + "printedName": "feedbackClientCorrelationId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)feedbackClientCorrelationId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)feedbackClientCorrelationId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setFeedbackClientCorrelationId:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)payload", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)payload", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setPayload:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegateData", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Compression", + "printedName": "Compression", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDLogLevel", + "printedName": "MDLogLevel", + "children": [ + { + "kind": "Var", + "name": "off", + "printedName": "off", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelOff", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO3offyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelFatal", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5fatalyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelError", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5erroryA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelWarn", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO4warnyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelInfo", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO4infoyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelDebug", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5debugyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 5 + }, + { + "kind": "Function", + "name": "stringRepresentation", + "printedName": "stringRepresentation()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO20stringRepresentationSSyF", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO20stringRepresentationSSyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDLogLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvpZ", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvpZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvgZ", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvgZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormTriggerType", + "printedName": "MDFormTriggerType", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDFormTriggerType.Type) -> MedalliaDigitalSDK.MDFormTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType@MDFormTriggerTypeCode", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO4codeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment", "ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "invite", + "printedName": "invite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDFormTriggerType.Type) -> MedalliaDigitalSDK.MDFormTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType@MDFormTriggerTypeInvite", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO6inviteyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment", "ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptPayload", + "printedName": "MDCustomInterceptPayload", + "children": [ + { + "kind": "Var", + "name": "titleText", + "printedName": "titleText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)titleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)titleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setTitleText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "subtitleText", + "printedName": "subtitleText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)subtitleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)subtitleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setSubtitleText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "provideFeedbackText", + "printedName": "provideFeedbackText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)provideFeedbackText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)provideFeedbackText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setProvideFeedbackText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declineText", + "printedName": "declineText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)declineText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)declineText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setDeclineText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deferText", + "printedName": "deferText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)deferText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)deferText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setDeferText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)init", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptDelegateData", + "printedName": "MDCustomInterceptDelegateData", + "children": [ + { + "kind": "Var", + "name": "formPreloadTimestamp", + "printedName": "formPreloadTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)formPreloadTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)formPreloadTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setFormPreloadTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "targetingEvaluationTimestamp", + "printedName": "targetingEvaluationTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)targetingEvaluationTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)targetingEvaluationTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setTargetingEvaluationTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementType", + "printedName": "engagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)engagementType", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)engagementType", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setEngagementType:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0OvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)payload", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)payload", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setPayload:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptDelegateData", + "printedName": "MDInterceptDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementType", + "printedName": "engagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)engagementType", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)engagementType", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setEngagementType:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0OvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appearanceSet", + "printedName": "appearanceSet", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)appearanceSet", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)appearanceSet", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setAppearanceSet:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appearanceDisplay", + "printedName": "appearanceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)appearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)appearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setAppearanceDisplay:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDAppearanceMode", + "printedName": "MDAppearanceMode", + "children": [ + { + "kind": "Var", + "name": "light", + "printedName": "light", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeLight", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO5lightyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "dark", + "printedName": "dark", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeDark", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO4darkyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeUnknown", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO7unknownyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "toString", + "printedName": "toString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8toStringSSyF", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8toStringSSyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDEngagementType", + "printedName": "MDEngagementType", + "children": [ + { + "kind": "Var", + "name": "form", + "printedName": "form", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDEngagementType.Type) -> MedalliaDigitalSDK.MDEngagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDEngagementType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType@MDEngagementTypeForm", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO4formyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appRating", + "printedName": "appRating", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDEngagementType.Type) -> MedalliaDigitalSDK.MDEngagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDEngagementType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType@MDEngagementTypeAppRating", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO9appRatingyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDEngagementType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDSDKFrameworkType", + "printedName": "MDSDKFrameworkType", + "children": [ + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeNative", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO6nativeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "reactNative", + "printedName": "reactNative", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeReactNative", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO11reactNativeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cordova", + "printedName": "cordova", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeCordova", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO7cordovayA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "flutter", + "printedName": "flutter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeFlutter", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO7flutteryA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "UNNotificationContent", + "printedName": "UNNotificationContent", + "children": [ + { + "kind": "Var", + "name": "isMedalliaDigitalSDKNotificationContent", + "printedName": "isMedalliaDigitalSDKNotificationContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(py)isMedalliaDigitalSDKNotificationContent", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE02iscd15SDKNotificationB0Sbvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(im)isMedalliaDigitalSDKNotificationContent", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE02iscd15SDKNotificationB0Sbvg", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "medalliaDigitalSDKEngagementId", + "printedName": "medalliaDigitalSDKEngagementId", + "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:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(py)medalliaDigitalSDKEngagementId", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE08medalliaD15SDKEngagementIdSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": 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:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(im)medalliaDigitalSDKEngagementId", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE08medalliaD15SDKEngagementIdSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UNNotificationContent", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNNotificationContent", + "declAttributes": ["Available", "ObjC", "Dynamic"], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "UIImage", + "printedName": "UIImage", + "children": [ + { + "kind": "Function", + "name": "gif", + "printedName": "gif(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif4dataABSg10Foundation4DataV_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif4dataABSg10Foundation4DataV_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gif", + "printedName": "gif(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif3urlABSgSS_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif3urlABSgSS_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gif", + "printedName": "gif(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif4nameABSgSS_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif4nameABSgSS_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIImage", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIImage", + "declAttributes": ["Available", "ObjC", "SynthesizedProtocol", "NonSendable", "Sendable", "Dynamic"], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "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": "Conformance", + "name": "_ExpressibleByImageLiteral", + "printedName": "_ExpressibleByImageLiteral", + "usr": "s:s26_ExpressibleByImageLiteralP", + "mangledName": "$ss26_ExpressibleByImageLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Function", + "name": "gunzipped", + "printedName": "gunzipped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV18MedalliaDigitalSDKE9gunzippedACSgyF", + "mangledName": "$s10Foundation4DataV18MedalliaDigitalSDKE9gunzippedACSgyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "declAttributes": ["Frozen"], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "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": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluatorV2.swift", + "kind": "BooleanLiteral", + "offset": 288, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluatorV2.swift", + "kind": "BooleanLiteral", + "offset": 610, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/UserJourneyTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 22, + "value": "\"UserJourneyTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "StringLiteral", + "offset": 2132, + "length": 12, + "value": "\"MedalliaDigitalSDK.RequestError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MedalliaDigital.swift", + "kind": "BooleanLiteral", + "offset": 8603, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 236, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 236, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "BooleanLiteral", + "offset": 3178, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "BooleanLiteral", + "offset": 3219, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomAppearanceEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetCustomAppearanceEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 35, + "value": "\"application/x-www-form-urlencoded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 18, + "value": "\"application/json\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 35, + "value": "\"application/x-www-form-urlencoded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 18, + "value": "\"application/json\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 425, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 425, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetInterceptListenerEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.SetInterceptListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 345, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 379, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 384, + "length": 4, + "value": "1000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 504, + "length": 12, + "value": "\"yyyy-MM-dd\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 574, + "length": 20, + "value": "\"dd-MM HH:mm:ss.SSS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 36, + "value": "\"MDLogMessageDidLogNotificationName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 41, + "value": "\"MDLogMessageNotificationUserInfoMessage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 42, + "value": "\"MDLogMessageNotificationUserInfoLogLevel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 29, + "value": "\"com.medallia.logsEventQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 1582, + "length": 22, + "value": "\"com.medallia.digital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastDeclineTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 38, + "value": "\"MedalliaDigitalSDK.AppRatingLastDeclineTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/InvitationDisplayedCollector.swift", + "kind": "StringLiteral", + "offset": 207, + "length": 28, + "value": "\"MedalliaDigitalSDK.InvitationDisplayedCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 9, + "value": "\"Bearer_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 353, + "length": 9, + "value": "\"Form ID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 393, + "length": 11, + "value": "\"Form Name\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 440, + "length": 17, + "value": "\"mec_question_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 498, + "length": 23, + "value": "\"mec_external_media_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 15, + "value": "\"mec_ballot_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 13, + "value": "\"userJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 770, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "BooleanLiteral", + "offset": 20159, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/PromptDisplayedCollector.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 24, + "value": "\"MedalliaDigitalSDK.PromptDisplayedCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/IsOCQUserSetCollector.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.IsOCQUserSetCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/ShowFormCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.ShowFormCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFormDelegateData.swift", + "kind": "BooleanLiteral", + "offset": 746, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFormDelegateData.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 18, + "value": "\"MedalliaDigitalSDK.MDFormDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptTriggeredEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.PromptTriggeredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/JWToken.swift", + "kind": "Dictionary", + "offset": 460, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/JWToken.swift", + "kind": "Dictionary", + "offset": 491, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/ApiToken.swift", + "kind": "StringLiteral", + "offset": 169, + "length": 8, + "value": "\"MedalliaDigitalSDK.ApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomInterceptListenerEvent.swift", + "kind": "StringLiteral", + "offset": 201, + "length": 31, + "value": "\"MedalliaDigitalSDK.SetCustomInterceptListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 252, + "length": 3, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 1212, + "length": 4, + "value": "30.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 1346, + "length": 4, + "value": "30.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/DisableInterceptEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.DisableInterceptEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetFeedbackCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetFeedbackCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1609, + "length": 2, + "value": "30" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1952, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 2732, + "length": 2, + "value": "46" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 400, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 451, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 484, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 546, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 583, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 636, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 690, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 744, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/PreviewApp/Managers/FilesManager.swift", + "kind": "StringLiteral", + "offset": 290, + "length": 20, + "value": "\"MedalliaPreviewApp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/DeleteStorageEvent.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 18, + "value": "\"MedalliaDigitalSDK.DeleteStorageEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Serialization.swift", + "kind": "BooleanLiteral", + "offset": 1299, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 256, + "length": 21, + "value": "\"medallia_form_title\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 29, + "value": "\"medallia_modal_close_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 33, + "value": "\"medallia_banner_feedback_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 30, + "value": "\"medallia_banner_close_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 541, + "length": 33, + "value": "\"medallia_banner_title_text_view\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 35, + "value": "\"medallia_banner_message_text_view\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/GetResourceClient.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 17, + "value": "\"MedalliaDigitalSDK.GetResourceClient\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/QuarantineValidationClient.swift", + "kind": "StringLiteral", + "offset": 504, + "length": 27, + "value": "\"CUUID file does not exist\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastTriggerTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 38, + "value": "\"MedalliaDigitalSDK.AppRatingLastTriggerTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.PromptDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/InitCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 17, + "value": "\"MedalliaDigitalSDK.InitCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/CsatCollector.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 13, + "value": "\"MedalliaDigitalSDK.CsatCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/AnalyticsTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 405, + "length": 20, + "value": "\"AnalyticsTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"Cancel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 323, + "length": 49, + "value": "\"Are You Sure You Want To Delete Captured Media?\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 405, + "length": 8, + "value": "\"Delete\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 469, + "length": 25, + "value": "\"Replace Captured Media?\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 549, + "length": 85, + "value": "\"Only one file may be captured. You are about to delete the previous captured media.\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 668, + "length": 9, + "value": "\"Replace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 718, + "length": 12, + "value": "\"Data Usage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 770, + "length": 147, + "value": "\"You are using a cellular data connection. Your captured media is large and will drain up your package, it is recommended to use a WiFi connection\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 955, + "length": 16, + "value": "\"No Permissions\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1008, + "length": 43, + "value": "\"The requested action cannot be completed.\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1083, + "length": 8, + "value": "\"Got it\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 6, + "value": "\"Back\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1160, + "length": 7, + "value": "\"Alert\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetUserIdEvent.swift", + "kind": "StringLiteral", + "offset": 184, + "length": 14, + "value": "\"MedalliaDigitalSDK.SetUserIdEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetInterceptCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.SetInterceptCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 12, + "value": "\"MDApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 332, + "length": 15, + "value": "\"MDAccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 406, + "length": 10, + "value": "\"MDUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 18, + "value": "\"MDpreviousUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 552, + "length": 21, + "value": "\"MDPreviousSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 632, + "length": 13, + "value": "\"MDSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 18, + "value": "\"MDSessionCounter\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 20, + "value": "\"MDCustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 16, + "value": "\"MDTargetEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 935, + "length": 29, + "value": "\"MDConfigurationUUIDContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1056, + "length": 11, + "value": "\"MDOcqUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 9, + "value": "\"MDcUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1194, + "length": 12, + "value": "\"MDCUuidURL\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 18, + "value": "\"MDLastSdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 17, + "value": "\"MDLastOsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1418, + "length": 20, + "value": "\"MDSdkKillTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 23, + "value": "\"MDSdkRecoverTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1579, + "length": 15, + "value": "\"MDIsSdkKilled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 16, + "value": "\"MDisSdkStopped\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 43, + "value": "\"MDShouldCheckSDKRestoreFromKillOnOsChange\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 17, + "value": "\"MDRevertStopSdk\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1906, + "length": 25, + "value": "\"MDPreviousIsAnalyticsV2\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1990, + "length": 33, + "value": "\"MDPreviousShouldSendUserJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2082, + "length": 12, + "value": "\"MDDeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 18, + "value": "\"MDFormsAvailable\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2230, + "length": 31, + "value": "\"MDLocalConfigurationTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 16, + "value": "\"MDSdkFramewrok\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 10, + "value": "\"MDLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2464, + "length": 12, + "value": "\"MDOsLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2535, + "length": 31, + "value": "\"MSIsUpdateCustomLocaleWithApi\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2625, + "length": 21, + "value": "\"MDAppAppearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2705, + "length": 15, + "value": "\"MDIsDebugForm\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 28, + "value": "\"MDDeliveredNotificationIds\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2866, + "length": 20, + "value": "\"MDPreInitCallbacks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2945, + "length": 24, + "value": "\"MDIsPreInitUserIdEmpty\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 12, + "value": "\"MDApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 332, + "length": 15, + "value": "\"MDAccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 406, + "length": 10, + "value": "\"MDUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 18, + "value": "\"MDpreviousUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 552, + "length": 21, + "value": "\"MDPreviousSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 632, + "length": 13, + "value": "\"MDSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 18, + "value": "\"MDSessionCounter\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 20, + "value": "\"MDCustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 16, + "value": "\"MDTargetEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 935, + "length": 29, + "value": "\"MDConfigurationUUIDContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1056, + "length": 11, + "value": "\"MDOcqUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 9, + "value": "\"MDcUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1194, + "length": 12, + "value": "\"MDCUuidURL\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 18, + "value": "\"MDLastSdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 17, + "value": "\"MDLastOsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1418, + "length": 20, + "value": "\"MDSdkKillTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 23, + "value": "\"MDSdkRecoverTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1579, + "length": 15, + "value": "\"MDIsSdkKilled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 16, + "value": "\"MDisSdkStopped\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 43, + "value": "\"MDShouldCheckSDKRestoreFromKillOnOsChange\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 17, + "value": "\"MDRevertStopSdk\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1906, + "length": 25, + "value": "\"MDPreviousIsAnalyticsV2\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1990, + "length": 33, + "value": "\"MDPreviousShouldSendUserJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2082, + "length": 12, + "value": "\"MDDeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 18, + "value": "\"MDFormsAvailable\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2230, + "length": 31, + "value": "\"MDLocalConfigurationTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 16, + "value": "\"MDSdkFramewrok\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 10, + "value": "\"MDLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2464, + "length": 12, + "value": "\"MDOsLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2535, + "length": 31, + "value": "\"MSIsUpdateCustomLocaleWithApi\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2625, + "length": 21, + "value": "\"MDAppAppearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2705, + "length": 15, + "value": "\"MDIsDebugForm\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 28, + "value": "\"MDDeliveredNotificationIds\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2866, + "length": 20, + "value": "\"MDPreInitCallbacks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2945, + "length": 24, + "value": "\"MDIsPreInitUserIdEmpty\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ModelFactory/ModelFactory.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 5, + "value": "60000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 328, + "length": 5, + "value": "60000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 478, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 5, + "value": "10000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "BooleanLiteral", + "offset": 900, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 4, + "value": "2500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "FloatLiteral", + "offset": 1000, + "length": 4, + "value": "15.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 4, + "value": "7000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 1114, + "length": 9, + "value": "604800000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "FloatLiteral", + "offset": 1180, + "length": 4, + "value": "55.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 337, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 571, + "length": 2, + "value": "90" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 770, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "Array", + "offset": 1078, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1113, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1153, + "length": 1, + "value": "7" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1197, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "Dictionary", + "offset": 2181, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 8177, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 23379, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 31730, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/StopSDKEvent.swift", + "kind": "StringLiteral", + "offset": 182, + "length": 12, + "value": "\"MedalliaDigitalSDK.StopSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 15, + "value": "\"MedalliaDigitalSDK.MDExternalError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/KillSwitch/KillSwitch.swift", + "kind": "FloatLiteral", + "offset": 2010, + "length": 4, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/AppRatingContract.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 17, + "value": "\"MedalliaDigitalSDK.AppRatingContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "StringLiteral", + "offset": 299, + "length": 13, + "value": "\"MedalliaDigitalSDK.InternalError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/AccessToken.swift", + "kind": "StringLiteral", + "offset": 172, + "length": 11, + "value": "\"MedalliaDigitalSDK.AccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/PropertyIdCollector.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 19, + "value": "\"MedalliaDigitalSDK.PropertyIdCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "BooleanLiteral", + "offset": 529, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/SynchronizedDictionary.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 37, + "value": "\"com.medallia.synchronizedDictionary\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/EventCollector.swift", + "kind": "BooleanLiteral", + "offset": 406, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/EventCollector.swift", + "kind": "StringLiteral", + "offset": 271, + "length": 14, + "value": "\"MedalliaDigitalSDK.EventCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "StringLiteral", + "offset": 363, + "length": 16, + "value": "\"MedalliaDigitalSDK.PollingCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RestClientEvent.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 15, + "value": "\"MedalliaDigitalSDK.RestClientEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/HandleNotificationEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.HandleNotificationEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFullFormViewController.swift", + "kind": "StringLiteral", + "offset": 330, + "length": 12, + "value": "\"BackButton\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInCurrentForegroundCollector.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 32, + "value": "\"MedalliaDigitalSDK.TimeInCurrentForegroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomParametersEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetCustomParametersEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 551, + "length": 7, + "value": "\"2.0.0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 18, + "value": "\"targetRuleEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 661, + "length": 5, + "value": "\"tre\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 727, + "length": 25, + "value": "\"/\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 745, + "length": 2, + "value": "\"-%@.js\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "BooleanLiteral", + "offset": 1675, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDAlertController.swift", + "kind": "BooleanLiteral", + "offset": 244, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 224, + "length": 5, + "value": "10000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 349, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 467, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 585, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 716, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 850, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 971, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1095, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1219, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1327, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1438, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1555, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1671, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1781, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1891, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1995, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2109, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2341, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2448, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2560, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2672, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2801, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2915, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3030, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3145, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3262, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 3304, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3390, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3502, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3625, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3739, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3861, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3982, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4090, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4205, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4319, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4444, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4561, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4679, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4797, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4915, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5038, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5148, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5253, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5385, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5516, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5647, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5758, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5885, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6011, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6125, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6242, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6374, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6498, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/RevertStopSDKEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.RevertStopSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 557, + "length": 4, + "value": "36.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 610, + "length": 4, + "value": "88.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 663, + "length": 4, + "value": "43.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 712, + "length": 5, + "value": "200.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 763, + "length": 5, + "value": "300.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 815, + "length": 4, + "value": "14.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 860, + "length": 4, + "value": "20.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 918, + "length": 4, + "value": "17.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 979, + "length": 3, + "value": "4.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1035, + "length": 4, + "value": "20.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1083, + "length": 4, + "value": "25.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1131, + "length": 3, + "value": "5.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "BooleanLiteral", + "offset": 1642, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "BooleanLiteral", + "offset": 1836, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/BatteryPercentageCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 26, + "value": "\"MedalliaDigitalSDK.BatteryPercentageCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetFeedbackListenerEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetFeedbackListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/UserJourney/UserJourney.swift", + "kind": "BooleanLiteral", + "offset": 329, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetInvitationCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.SetInvitationCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/MediaCaptureCollectedEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.MediaCaptureCollectedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 257, + "length": 9, + "value": "\"#FFFFFF\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 9, + "value": "\"#2C3548\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 9, + "value": "\"#007AFF\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 498, + "length": 9, + "value": "\"#0049D3\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Authenticator/Authenticator.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/VoiceOverCollector.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 18, + "value": "\"MedalliaDigitalSDK.VoiceOverCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/FeedbackTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 19, + "value": "\"FeedbackTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 296, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 317, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 296, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 317, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/GlobalConstants.swift", + "kind": "StringLiteral", + "offset": 241, + "length": 32, + "value": "\"com.medallia.digital.MobileSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/GlobalConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 27, + "value": "\"timeInBackgroundEventName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 741, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 787, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 826, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3766, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3831, + "length": 9, + "value": "\"#cccccc\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3884, + "length": 8, + "value": "\"System\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3940, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 4000, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "IntegerLiteral", + "offset": 4066, + "length": 4, + "value": "5000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Reading.swift", + "kind": "BooleanLiteral", + "offset": 1012, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Reading.swift", + "kind": "BooleanLiteral", + "offset": 4125, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.InvitationDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RestoreFromKillSDKEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 23, + "value": "\"MedalliaDigitalSDK.RestoreFromKillSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/SDKConfigurationFormContract.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 28, + "value": "\"MedalliaDigitalSDK.SDKConfigurationFormContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/TargetEvaluatorEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.TargetEvaluatorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 5, + "value": "\"en0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 232, + "length": 9, + "value": "\"pdp_ip0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 5, + "value": "\"en0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 232, + "length": 9, + "value": "\"pdp_ip0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TriggerNodeContract.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 19, + "value": "\"MedalliaDigitalSDK.TriggerNodeContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetFormCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.SetFormCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 300, + "length": 3, + "value": "0.4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 338, + "length": 3, + "value": "0.3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 385, + "length": 4, + "value": "1.02" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 433, + "length": 3, + "value": "0.8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 477, + "length": 3, + "value": "0.7" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 742, + "length": 3, + "value": "0.5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/MediaCaptureSubmitEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.MediaCaptureSubmitEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 244, + "length": 3, + "value": "8.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 251, + "length": 6, + "value": "1024.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 260, + "length": 6, + "value": "1024.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadSingleResourceOperation.swift", + "kind": "StringLiteral", + "offset": 286, + "length": 27, + "value": "\"MedalliaDigitalSDK.LoadSingleResourceOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 289, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 330, + "length": 12, + "value": "\"appVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 8, + "value": "\"osType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 7, + "value": "\"appId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 10, + "value": "\"deviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 13, + "value": "\"deviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1225, + "length": 18, + "value": "\"mobileDeviceData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1282, + "length": 18, + "value": "\"deviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1335, + "length": 14, + "value": "\"deviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1384, + "length": 14, + "value": "\"deviceLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1433, + "length": 14, + "value": "\"formLanguage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 16, + "value": "\"appearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1529, + "length": 6, + "value": "\"cuid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 22, + "value": "\"mobileInvitationType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/MediaTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 394, + "length": 16, + "value": "\"MediaTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/OrientationCollector.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 20, + "value": "\"MedalliaDigitalSDK.OrientationCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetCustomInterceptCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 201, + "length": 31, + "value": "\"MedalliaDigitalSDK.SetCustomInterceptCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/InitOfflineMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.InitOfflineMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TriggerChildGroup.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 17, + "value": "\"MedalliaDigitalSDK.TriggerChildGroup\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadTemplatesOperation.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadTemplatesOperation.swift", + "kind": "StringLiteral", + "offset": 280, + "length": 22, + "value": "\"MedalliaDigitalSDK.LoadTemplatesOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/TemplateTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 19, + "value": "\"TemplateTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/PowerTypeCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 18, + "value": "\"MedalliaDigitalSDK.PowerTypeCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormWindow.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 351, + "length": 20, + "value": "\"MedalliaDigitalSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 53, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 466, + "length": 19, + "value": "\"_local_notification\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 527, + "length": 43, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 566, + "length": 3, + "value": "\"_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 619, + "length": 51, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 11, + "value": "\"_expiration\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 15, + "value": "\"_fire_timestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 816, + "length": 54, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 855, + "length": 14, + "value": "\"_engagement_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "Array", + "offset": 1056, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/PreloadMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.PreloadMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/FormDataTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 19, + "value": "\"FormDataTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetEvaluatorContract.swift", + "kind": "BooleanLiteral", + "offset": 2439, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "IntegerLiteral", + "offset": 332, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 18, + "value": "\"MedalliaDigitalSDK.LifeCycleCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/LoggerEvent.swift", + "kind": "StringLiteral", + "offset": 183, + "length": 11, + "value": "\"MedalliaDigitalSDK.LoggerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LastSubmitTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 28, + "value": "\"MedalliaDigitalSDK.LastSubmitTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RefreshSessionEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.RefreshSessionEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LastDeclineTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 29, + "value": "\"MedalliaDigitalSDK.LastDeclineTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetInvitationListenerEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.SetInvitationListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/SubmitFeedbackEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.SubmitFeedbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 157, + "length": 13, + "value": "\"DeviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 14, + "value": "\"DeviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 226, + "length": 18, + "value": "\"DeviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 18, + "value": "\"DeviceUsedMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 308, + "length": 18, + "value": "\"DeviceFreeMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 21, + "value": "\"DeviceUsedDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 21, + "value": "\"DeviceFreeDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 8, + "value": "\"OsName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 11, + "value": "\"OsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 16, + "value": "\"NetworkCarrier\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 534, + "length": 10, + "value": "\"Language\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 565, + "length": 10, + "value": "\"Timezone\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 13, + "value": "\"NetworkType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 4, + "value": "\"IP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 656, + "length": 14, + "value": "\"NetworkSpeed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 11, + "value": "\"PowerType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 19, + "value": "\"BatteryPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 13, + "value": "\"Orientation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 13, + "value": "\"AdvertiseId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"DeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 876, + "length": 8, + "value": "\"UserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 905, + "length": 10, + "value": "\"UserName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 11, + "value": "\"UserEmail\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 977, + "length": 18, + "value": "\"CustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 21, + "value": "\"SdkAnalyticsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1065, + "length": 9, + "value": "\"AppName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 7, + "value": "\"AppId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 12, + "value": "\"AppVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 11, + "value": "\"Lifecycle\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 12, + "value": "\"SdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1242, + "length": 29, + "value": "\"SessionCalculatedPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 15, + "value": "\"SessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 11, + "value": "\"SessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 12, + "value": "\"PropertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 22, + "value": "\"LastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1460, + "length": 32, + "value": "\"AppRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 31, + "value": "\"AppRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 31, + "value": "\"AppRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 21, + "value": "\"LastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 10, + "value": "\"Location\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1721, + "length": 15, + "value": "\"TimeInSession\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1765, + "length": 18, + "value": "\"TimeInForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1812, + "length": 18, + "value": "\"TimeInBackground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1862, + "length": 21, + "value": "\"InvitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1911, + "length": 17, + "value": "\"PromptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1957, + "length": 18, + "value": "\"InterceptEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 19, + "value": "\"InterceptDisabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2041, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 11, + "value": "\"VoiceOver\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 14, + "value": "\"SdkFramework\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2178, + "length": 27, + "value": "\"LocalNotificationsEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2241, + "length": 25, + "value": "\"TimeInCurrentForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 14, + "value": "\"IsOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2333, + "length": 17, + "value": "\"IsOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2385, + "length": 24, + "value": "\"IsSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2461, + "length": 32, + "value": "\"SessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 157, + "length": 13, + "value": "\"DeviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 14, + "value": "\"DeviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 226, + "length": 18, + "value": "\"DeviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 18, + "value": "\"DeviceUsedMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 308, + "length": 18, + "value": "\"DeviceFreeMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 21, + "value": "\"DeviceUsedDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 21, + "value": "\"DeviceFreeDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 8, + "value": "\"OsName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 11, + "value": "\"OsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 16, + "value": "\"NetworkCarrier\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 534, + "length": 10, + "value": "\"Language\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 565, + "length": 10, + "value": "\"Timezone\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 13, + "value": "\"NetworkType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 4, + "value": "\"IP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 656, + "length": 14, + "value": "\"NetworkSpeed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 11, + "value": "\"PowerType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 19, + "value": "\"BatteryPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 13, + "value": "\"Orientation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 13, + "value": "\"AdvertiseId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"DeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 876, + "length": 8, + "value": "\"UserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 905, + "length": 10, + "value": "\"UserName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 11, + "value": "\"UserEmail\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 977, + "length": 18, + "value": "\"CustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 21, + "value": "\"SdkAnalyticsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1065, + "length": 9, + "value": "\"AppName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 7, + "value": "\"AppId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 12, + "value": "\"AppVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 11, + "value": "\"Lifecycle\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 12, + "value": "\"SdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1242, + "length": 29, + "value": "\"SessionCalculatedPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 15, + "value": "\"SessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 11, + "value": "\"SessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 12, + "value": "\"PropertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 22, + "value": "\"LastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1460, + "length": 32, + "value": "\"AppRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 31, + "value": "\"AppRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 31, + "value": "\"AppRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 21, + "value": "\"LastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 10, + "value": "\"Location\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1721, + "length": 15, + "value": "\"TimeInSession\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1765, + "length": 18, + "value": "\"TimeInForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1812, + "length": 18, + "value": "\"TimeInBackground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1862, + "length": 21, + "value": "\"InvitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1911, + "length": 17, + "value": "\"PromptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1957, + "length": 18, + "value": "\"InterceptEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 19, + "value": "\"InterceptDisabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2041, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 11, + "value": "\"VoiceOver\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 14, + "value": "\"SdkFramework\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2178, + "length": 27, + "value": "\"LocalNotificationsEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2241, + "length": 25, + "value": "\"TimeInCurrentForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 14, + "value": "\"IsOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2333, + "length": 17, + "value": "\"IsOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2385, + "length": 24, + "value": "\"IsSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2461, + "length": 32, + "value": "\"SessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/InterceptProducer.swift", + "kind": "BooleanLiteral", + "offset": 1006, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastAcceptedTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 39, + "value": "\"MedalliaDigitalSDK.AppRatingLastAcceptedTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFeedbackDelegateData.swift", + "kind": "StringLiteral", + "offset": 212, + "length": 22, + "value": "\"MedalliaDigitalSDK.MDFeedbackDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/EnableInterceptEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.EnableInterceptEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/InitEvent.swift", + "kind": "StringLiteral", + "offset": 179, + "length": 9, + "value": "\"MedalliaDigitalSDK.InitEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormSubmittedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormSubmittedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Compression.swift", + "kind": "Array", + "offset": 1000, + "length": 3281, + "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Compression.swift", + "kind": "BooleanLiteral", + "offset": 7275, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 272, + "length": 22, + "value": "\"lastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 382, + "length": 31, + "value": "\"appRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 32, + "value": "\"appRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 31, + "value": "\"appRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 21, + "value": "\"lastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 827, + "length": 18, + "value": "\"refreshSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 22, + "value": "\"refreshSessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1027, + "length": 24, + "value": "\"refreshSessionIfNeeded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 21, + "value": "\"invitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1224, + "length": 17, + "value": "\"promptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1310, + "length": 12, + "value": "\"propertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 6, + "value": "\"csat\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 5, + "value": "\"nps\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1529, + "length": 14, + "value": "\"isOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1617, + "length": 17, + "value": "\"isOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1715, + "length": 24, + "value": "\"isSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1828, + "length": 32, + "value": "\"sessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 365, + "length": 20, + "value": "\"MedalliaSDKVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 422, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 709, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "IntegerLiteral", + "offset": 801, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1075, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1147, + "length": 28, + "value": "\"CFBundleShortVersionString\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FeedbackRetryMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 27, + "value": "\"MedalliaDigitalSDK.FeedbackRetryMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 559, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 604, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 662, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormClosedEvent.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 15, + "value": "\"MedalliaDigitalSDK.FormClosedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptSkippedEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 27, + "value": "\"MedalliaDigitalSDK.CustomInterceptSkippedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1944, + "length": 5, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1959, + "length": 5, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 4, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 5, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1944, + "length": 5, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1959, + "length": 5, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 4, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 5, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/SessionNumberCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 22, + "value": "\"MedalliaDigitalSDK.SessionNumberCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "BooleanLiteral", + "offset": 968, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "BooleanLiteral", + "offset": 1080, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1135, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1187, + "length": 2, + "value": "40" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomParameterEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.SetCustomParameterEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/DeviceVendorCollector.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 957, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 957, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 313, + "length": 10, + "value": "\"Database\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 370, + "length": 15, + "value": "\"attributeName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 16, + "value": "\"attributeValue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 10, + "value": "\"Database\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 27, + "value": "\"NSSecureUnarchiveFromData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "BooleanLiteral", + "offset": 657, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "BooleanLiteral", + "offset": 17012, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 2134, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2600, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2648, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "StringLiteral", + "offset": 2684, + "length": 4, + "value": "\"-1\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2727, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2772, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2815, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2856, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2938, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 2977, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3008, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3051, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3103, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3489, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 3528, + "length": 4, + "value": "0.97" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 3643, + "length": 3, + "value": "2.5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDCustomInterceptPayload.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 24, + "value": "\"MedalliaDigitalSDK.MDCustomInterceptPayload\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 27, + "value": "\"kplConfig.submitUrlPrefix\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "StringLiteral", + "offset": 600, + "length": 27, + "value": "\"kplConfig.submitUrlSuffix\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "Dictionary", + "offset": 1895, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 2703, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 19967, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 20034, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "IntegerLiteral", + "offset": 41685, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "StringLiteral", + "offset": 490, + "length": 28, + "value": "\"com.medallia.formDataQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "FloatLiteral", + "offset": 554, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "BooleanLiteral", + "offset": 615, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "BooleanLiteral", + "offset": 678, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Error/InternalErrorEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.InternalErrorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/OCQ/QuarantineValidationResponse.swift", + "kind": "BooleanLiteral", + "offset": 408, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/InterceptMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InterceptMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/ShowFormEvent.swift", + "kind": "StringLiteral", + "offset": 183, + "length": 13, + "value": "\"MedalliaDigitalSDK.ShowFormEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/NpsCollector.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 12, + "value": "\"MedalliaDigitalSDK.NpsCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/CustomInterceptTriggerCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 205, + "length": 35, + "value": "\"MedalliaDigitalSDK.CustomInterceptTriggerCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDCustomInterceptDelegateData.swift", + "kind": "StringLiteral", + "offset": 219, + "length": 29, + "value": "\"MedalliaDigitalSDK.MDCustomInterceptDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsLoader.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsLoader.swift", + "kind": "StringLiteral", + "offset": 737, + "length": 36, + "value": "\"com.medallia.delegateDispatchQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/ResourceContract.swift", + "kind": "BooleanLiteral", + "offset": 441, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/CloseEngagementEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.CloseEngagementEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/FileManager+ZIP.swift", + "kind": "BooleanLiteral", + "offset": 955, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1727, + "length": 11, + "value": "\"FormId : \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1750, + "length": 4, + "value": "\", \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"FormStatus : \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Session/Session.swift", + "kind": "IntegerLiteral", + "offset": 268, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/ResourceContractTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 27, + "value": "\"ResourceContractTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDInterceptDelegateData.swift", + "kind": "StringLiteral", + "offset": 213, + "length": 23, + "value": "\"MedalliaDigitalSDK.MDInterceptDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormDismissedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormDismissedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/SessionIdCollector.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 18, + "value": "\"MedalliaDigitalSDK.SessionIdCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadResourcesOperation.swift", + "kind": "IntegerLiteral", + "offset": 601, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadResourcesOperation.swift", + "kind": "StringLiteral", + "offset": 217, + "length": 22, + "value": "\"MedalliaDigitalSDK.LoadResourcesOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/QuarantineValidationRuleTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 472, + "length": 35, + "value": "\"QuarantineValidationRuleTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/UpdateCustomLocaleEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 23, + "value": "\"MedalliaDigitalSDK.UpdateCustomLocaleEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadSingleTemplateOperation.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 27, + "value": "\"MedalliaDigitalSDK.LoadSingleTemplateOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 500, + "length": 14, + "value": "\"CustomParams\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 10, + "value": "\"logLevel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 597, + "length": 24, + "value": "\"setInteceptListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 20, + "value": "\"setFormListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 721, + "length": 24, + "value": "\"setFeedbackListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 794, + "length": 31, + "value": "\"setCustomInterceptListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 861, + "length": 18, + "value": "\"revertStopSdkKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 918, + "length": 21, + "value": "\"sdkFramewrokTypeKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 18, + "value": "\"deleteStorageKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 20, + "value": "\"RestoreFromKillSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1089, + "length": 20, + "value": "\"enableInterceptKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1148, + "length": 21, + "value": "\"disableInterceptKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1210, + "length": 23, + "value": "\"updateCustomLocaleKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 23, + "value": "\"handleNotificationKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "BooleanLiteral", + "offset": 231, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "BooleanLiteral", + "offset": 259, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 13, + "value": "\"isExecuting\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 12, + "value": "\"isFinished\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 13, + "value": "\"isExecuting\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 12, + "value": "\"isFinished\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "Dictionary", + "offset": 616, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "StringLiteral", + "offset": 1795, + "length": 5, + "value": "\"md_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 9, + "value": "\"md_ios_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 2115, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 56920, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 56965, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "IntegerLiteral", + "offset": 57016, + "length": 3, + "value": "512" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "IntegerLiteral", + "offset": 57066, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 215, + "length": 11, + "value": "\".DS_Store\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 11, + "value": "\"templates\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 306, + "length": 11, + "value": "\"resources\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 356, + "length": 18, + "value": "\"targetRuleEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 421, + "length": 17, + "value": "\"MedalliaDigital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 491, + "length": 18, + "value": "\".MedalliaDigital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 10, + "value": "\"property\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 600, + "length": 15, + "value": "\"configuration\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 652, + "length": 7, + "value": "\"media\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 7, + "value": "\".html\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 248, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 248, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormLoadedEvent.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 15, + "value": "\"MedalliaDigitalSDK.FormLoadedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/ThankYouPromptDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.ThankYouPromptDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetFormListenerEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.SetFormListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInForegroundCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 25, + "value": "\"MedalliaDigitalSDK.TimeInForegroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 462, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 462, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFormHeaderView.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFormHeaderView.swift", + "kind": "StringLiteral", + "offset": 263, + "length": 18, + "value": "\"MedalliaDigitalSDK.MDUIFormHeaderView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInBackgroundCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 25, + "value": "\"MedalliaDigitalSDK.TimeInBackgroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/InterfaceOrientationManager.swift", + "kind": "BooleanLiteral", + "offset": 261, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/InterfaceOrientationManager.swift", + "kind": "BooleanLiteral", + "offset": 319, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/ResourcesSizeEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.ResourcesSizeEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/FormLoadSpinnerEvent.swift", + "kind": "StringLiteral", + "offset": 136, + "length": 20, + "value": "\"MedalliaDigitalSDK.FormLoadSpinnerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 311, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 311, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/NativeTargetEvaluatorEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 26, + "value": "\"MedalliaDigitalSDK.NativeTargetEvaluatorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/IsOCQRulesValidCollector.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.IsOCQRulesValidCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/ConfigurationClient.swift", + "kind": "StringLiteral", + "offset": 2654, + "length": 13, + "value": "\"tre-version\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/ConfigurationClient.swift", + "kind": "StringLiteral", + "offset": 2654, + "length": 13, + "value": "\"tre-version\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 225, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 273, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 315, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 354, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 394, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 439, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 483, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 535, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 582, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 617, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "FloatLiteral", + "offset": 833, + "length": 3, + "value": "5.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1152, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 1317, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 1362, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 131, + "length": 14, + "value": "\"MedalliaDigitalSDK.MDUIBannerView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 8, + "value": "\"BOTTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 8, + "value": "\"BOTTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/NSLayoutConstraint+Common.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/NSLayoutConstraint+Common.swift", + "kind": "FloatLiteral", + "offset": 455, + "length": 3, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"BANNER\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"ALERT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 284, + "length": 19, + "value": "\"PUSH_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 8, + "value": "\"CUSTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 20, + "value": "\"LOCAL_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"BANNER\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"ALERT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 284, + "length": 19, + "value": "\"PUSH_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 8, + "value": "\"CUSTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 20, + "value": "\"LOCAL_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 10, + "value": "\"MedalliaDigitalSDK.InviteData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 33, + "value": "\"Feedback Submitted Successfully\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 274, + "length": 7, + "value": "\"Close\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 323, + "length": 18, + "value": "\"Provide Feedback\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 375, + "length": 10, + "value": "\"Rate App\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 420, + "length": 11, + "value": "\"No Thanks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 13, + "value": "\"Maybe Later\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 568, + "length": 9, + "value": "\"#cccccc\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 614, + "length": 8, + "value": "\"System\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 747, + "length": 4, + "value": "5000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 906, + "length": 4, + "value": "50.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 967, + "length": 4, + "value": "66.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 1027, + "length": 3, + "value": "0.1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1076, + "length": 2, + "value": "17" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1122, + "length": 2, + "value": "15" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1169, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 3, + "value": "126" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 385, + "length": 2, + "value": "60" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "FloatLiteral", + "offset": 476, + "length": 3, + "value": "4.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "BooleanLiteral", + "offset": 516, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "StringLiteral", + "offset": 182, + "length": 17, + "value": "\"MedalliaDigitalSDK.MDUIPoweredByView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 277, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 487, + "length": 5, + "value": "0o644" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 535, + "length": 5, + "value": "0o755" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 630, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 661, + "length": 2, + "value": "22" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 5, + "value": "66000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 741, + "length": 10, + "value": "0x06054b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 789, + "length": 10, + "value": "0x04034b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 836, + "length": 10, + "value": "0x08074b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 10, + "value": "0x02014b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4560, + "length": 2, + "value": "22" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/SynchronizedArray.swift", + "kind": "StringLiteral", + "offset": 331, + "length": 32, + "value": "\"com.medallia.synchronizedArray\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Locale/LocaleService.swift", + "kind": "BooleanLiteral", + "offset": 339, + "length": 5, + "value": "false" + } + ] +} diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/armv7-apple-ios.swiftinterface b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.private.swiftinterface similarity index 94% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/armv7-apple-ios.swiftinterface rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.private.swiftinterface index 019ff39..72a4ce2 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/armv7-apple-ios.swiftinterface +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.private.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target armv7-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVKit import AdSupport import Compression @@ -20,8 +21,10 @@ import SystemConfiguration import UIKit.UIApplication import UIKit.UIDevice import UIKit +import UserNotifications import WebKit import _Concurrency +import _StringProcessing import zlib @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers public class MedalliaDigital : ObjectiveC.NSObject { @objc public static func sdkInit(token: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) @@ -44,11 +47,20 @@ import zlib @objc public static func setCustomAppearance(_ appearanceMode: MedalliaDigitalSDK.MDAppearanceMode) @objc public static func setDebugForm(_ debug: Swift.Bool) @objc public static func closeEngagement(success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setUserId(_ userId: Swift.String?) @objc deinit } @objc public protocol MDFeedbackDelegate { @objc optional func feedbackDidSubmit(feedbackDelegateData: MedalliaDigitalSDK.MDFeedbackDelegateData) } +@objc extension UserNotifications.UNNotificationContent { + @objc dynamic public var isMedalliaDigitalSDKNotificationContent: Swift.Bool { + @objc get + } + @objc dynamic public var medalliaDigitalSDKEngagementId: Swift.String? { + @objc get + } +} extension UIKit.UIImage { public class func gif(data: Foundation.Data) -> UIKit.UIImage? public class func gif(url: Swift.String) -> UIKit.UIImage? @@ -111,6 +123,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { } @objc @_hasMissingDesignatedInitializers @objcMembers public class MDFeedbackDelegateData : ObjectiveC.NSObject { @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String @objc public var feedbackClientCorrelationId: Swift.String @objc public var payload: [Swift.String : Any] @objc deinit @@ -190,6 +203,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { case native = 0 case reactNative = 1 case cordova = 2 + case flutter = 3 public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..26faafb Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftinterface b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftinterface similarity index 94% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftinterface rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftinterface index f752134..72a4ce2 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftinterface +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios10.0 -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVKit import AdSupport import Compression @@ -20,8 +21,10 @@ import SystemConfiguration import UIKit.UIApplication import UIKit.UIDevice import UIKit +import UserNotifications import WebKit import _Concurrency +import _StringProcessing import zlib @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers public class MedalliaDigital : ObjectiveC.NSObject { @objc public static func sdkInit(token: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) @@ -44,11 +47,20 @@ import zlib @objc public static func setCustomAppearance(_ appearanceMode: MedalliaDigitalSDK.MDAppearanceMode) @objc public static func setDebugForm(_ debug: Swift.Bool) @objc public static func closeEngagement(success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setUserId(_ userId: Swift.String?) @objc deinit } @objc public protocol MDFeedbackDelegate { @objc optional func feedbackDidSubmit(feedbackDelegateData: MedalliaDigitalSDK.MDFeedbackDelegateData) } +@objc extension UserNotifications.UNNotificationContent { + @objc dynamic public var isMedalliaDigitalSDKNotificationContent: Swift.Bool { + @objc get + } + @objc dynamic public var medalliaDigitalSDKEngagementId: Swift.String? { + @objc get + } +} extension UIKit.UIImage { public class func gif(data: Foundation.Data) -> UIKit.UIImage? public class func gif(url: Swift.String) -> UIKit.UIImage? @@ -111,6 +123,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { } @objc @_hasMissingDesignatedInitializers @objcMembers public class MDFeedbackDelegateData : ObjectiveC.NSObject { @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String @objc public var feedbackClientCorrelationId: Swift.String @objc public var payload: [Swift.String : Any] @objc deinit @@ -190,6 +203,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { case native = 0 case reactNative = 1 case cordova = 2 + case flutter = 3 public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/module.modulemap b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/module.modulemap similarity index 100% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/module.modulemap rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/Modules/module.modulemap diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/stripArchitechtures.sh b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/stripArchitechtures.sh similarity index 100% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/stripArchitechtures.sh rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64/MedalliaDigitalSDK.framework/stripArchitechtures.sh diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Assets.car b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Assets.car deleted file mode 100644 index cc94576..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Assets.car and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/MedalliaDigitalSDK b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/MedalliaDigitalSDK deleted file mode 100755 index 197da41..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/MedalliaDigitalSDK and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftdoc deleted file mode 100644 index b54b4c7..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios.swiftdoc and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/armv7-apple-ios.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/armv7-apple-ios.swiftdoc deleted file mode 100644 index bdc138b..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/armv7-apple-ios.swiftdoc and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Assets.car b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Assets.car deleted file mode 100644 index cc94576..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Assets.car and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h deleted file mode 100644 index d8d12c3..0000000 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h +++ /dev/null @@ -1,2378 +0,0 @@ -#if 0 -#elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef MEDALLIADIGITALSDK_SWIFT_H -#define MEDALLIADIGITALSDK_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 "-Wauto-import" -#include -#include -#include -#include - -#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(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#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" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="MedalliaDigitalSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - - -typedef SWIFT_ENUM(NSInteger, MDAppearanceMode, open) { - MDAppearanceModeLight = 0, - MDAppearanceModeDark = 1, - MDAppearanceModeUnknown = 2, -}; - -@class MDCustomInterceptDelegateData; - -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK25MDCustomInterceptDelegate_") -@protocol MDCustomInterceptDelegate -@optional -/// The event is triggered when target evaluation finished succefully -/// \param customInterceptDelegateData MDCustomInterceptDelegateData object that contains: -///
    -///
  • -/// formPreloadTimestamp: represents the epoch time in milliseconds when the specific from preload has happened. -///
  • -///
  • -/// targetingEvaluationTimestamp: represents the epoch time in milliseconds when the specific targeting evaluation has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section. -///
  • -///
  • -/// engagementType: MDEngagementType object that represent the engagement type. -///
  • -///
  • -/// payload: MDCustomInterceptPayload object that contains the intercept payload. -///
  • -///
-/// -- (void)targetEvaluationDidSuccessWithCustomInterceptDelegateData:(MDCustomInterceptDelegateData * _Nonnull)customInterceptDelegateData; -@end - -@class NSString; -enum MDEngagementType : NSInteger; -@class MDCustomInterceptPayload; - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK29MDCustomInterceptDelegateData") -@interface MDCustomInterceptDelegateData : NSObject -@property (nonatomic) double formPreloadTimestamp; -@property (nonatomic) double targetingEvaluationTimestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDEngagementType engagementType; -@property (nonatomic, strong) MDCustomInterceptPayload * _Nonnull payload; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK24MDCustomInterceptPayload") -@interface MDCustomInterceptPayload : NSObject -@property (nonatomic, copy) NSString * _Nullable titleText; -@property (nonatomic, copy) NSString * _Nullable subtitleText; -@property (nonatomic, copy) NSString * _Nullable provideFeedbackText; -@property (nonatomic, copy) NSString * _Nullable declineText; -@property (nonatomic, copy) NSString * _Nullable deferText; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// There are 2 types of SDK engagements: -///
    -///
  • -/// form: Intercept will launch a form survey to collect user feedback -///
  • -///
  • -/// appRating: Intercept will be prompted the user to rate the app in AppStore -///
  • -///
-typedef SWIFT_ENUM(NSInteger, MDEngagementType, open) { - MDEngagementTypeForm = 0, - MDEngagementTypeAppRating = 1, -}; - - -/// This class depicts an error arise from MedalliaDigital class -SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MDExternalError") -@interface MDExternalError : NSObject -///
    -///
  • -/// message: error description message -///
  • -///
-@property (nonatomic) NSInteger statusCode; -///
    -///
  • -/// statusCode: error status code -///
  • -///
-@property (nonatomic, copy) NSString * _Nonnull message; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class MDFeedbackDelegateData; - -/// A delegate for receiving submitted form payload. This API method allows listening to in-form feedback content submitted by user. -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK18MDFeedbackDelegate_") -@protocol MDFeedbackDelegate -@optional -/// The event is triggered when feedback was collected by SDK after “Submit” button was selected. -/// \param feedbackDelegateData DataMDFeedbackDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// feedbackUUID: represents the feedback UUID as it appears in the command center under inbox section, it is the id of the form submitted by user. -///
  • -///
  • -/// payload: a string that contains the submitted feedback components (currently not text and image components) and the user’s feedback UUID, it is in json format. -///
  • -///
-/// -- (void)feedbackDidSubmitWithFeedbackDelegateData:(MDFeedbackDelegateData * _Nonnull)feedbackDelegateData; -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK22MDFeedbackDelegateData") -@interface MDFeedbackDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull feedbackClientCorrelationId; -@property (nonatomic, copy) NSDictionary * _Nonnull payload; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class MDFormDelegateData; - -/// A delegate for receiving a form displayed information. This API method allows listening to form related events, e.g. form was submitted. -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK14MDFormDelegate_") -@protocol MDFormDelegate -@optional -/// This event is triggered when user submitted for. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidSubmitWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when user closed form without submitting feedback. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidDismissWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when SDK closes form (and not user) after submitting feedback. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidCloseWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when a form is displayed via code form or invitation form. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// formLocaleSet: String? -///
  • -///
  • -/// formLocaleDisplay: String? -///
  • -///
-/// -- (void)formDidDisplayWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when form includes blocked external links. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// blockedUrl: external url that has been blocked. -///
  • -///
-/// -- (void)formDidBlockExternalUrlWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when link was selected. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// url: external url that has been selected. -///
  • -///
  • -/// isBlocked: if the url above was blocked then it’s true, otherwise it’s false -///
  • -///
-/// -- (void)formDidLinkSelectWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when the thank you prompt was displayed after the form was submitted -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidThankYouPromptWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -@end - -enum MDFormTriggerType : NSInteger; - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK18MDFormDelegateData") -@interface MDFormDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDFormTriggerType formTriggerType; -@property (nonatomic, copy) NSString * _Nullable url; -@property (nonatomic) BOOL isBlocked; -@property (nonatomic, copy) NSString * _Nullable formLocaleSet; -@property (nonatomic, copy) NSString * _Nullable formLocaleDisplay; -@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceSet; -@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceDisplay; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// There are 2 types of forms, distinguished by their trigger origin: -///
    -///
  • -/// code: Code triggers are to be used as the passive trigger method when the user actively looks to leave feedback, usually a “feedback” menu option. This form is triggered by the app calling MedalliaDigital.showForm() -///
  • -///
  • -/// invite: Invitation triggers, also known as invites or intercepts, are to be used as the proactive trigger method when the app looks to receive contextual feedback using the SDK invite flavours (native alert, SDK banner etc.). This form is triggered automatically by the SDK when setting up survey on the Digital Command Center. -///
  • -///
-typedef SWIFT_ENUM(NSInteger, MDFormTriggerType, open) { -/// Code trigger type - MDFormTriggerTypeCode = 0, -/// Invitation trigger type - MDFormTriggerTypeInvite = 1, -}; - -typedef SWIFT_ENUM(NSInteger, MDInterceptActionType, open) { - MDInterceptActionTypeAccepted = 0, - MDInterceptActionTypeDeclined = 1, - MDInterceptActionTypeDeferred = 2, - MDInterceptActionTypeSkipped = 3, -}; - -@class MDInterceptDelegateData; - -/// A delegate for receiving an intercept displayed information. Allows listening to intercepts related events. i.e. Actions taken by user in Form Invitations and App Rating prompts (App Ratings is coming soon). -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK19MDInterceptDelegate_") -@protocol MDInterceptDelegate -@optional -/// This event is triggered when intercept was displayed to end user. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDisplayWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was accepted by user from alert (usually “Provide Feedback”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidAcceptWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was declined by user from alert (usually “No Thanks”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDeclineWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was deferred by user from alert (usually “Maybe Later”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDeferWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was closed bty the app -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidCloseWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when SKStoreReviewController was triggered by the SDK. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
-/// -- (void)interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK23MDInterceptDelegateData") -@interface MDInterceptDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDEngagementType engagementType; -@property (nonatomic) enum MDAppearanceMode appearanceSet; -@property (nonatomic) enum MDAppearanceMode appearanceDisplay; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// | MDLogLevel | Description | -/// |——————|––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––| -/// | MDLogLevel.OFF | Turns off the SDK logs. As mentioned above, this API should not be integrated in production apps. Using this log level is also not allowed. | -/// | MDLogLevel.FATAL | Will print only fatal logs. e.g. In case a fatal error occurred, the SDK is likely to crash. | -/// | MDLogLevel.ERROR | Will print error logs and will also include the levels above. e.g. An error occurred. It is likely the error is recoverable and available info about what happened will output to console. | -/// | MDLogLevel.WARN | Will print warn logs and will also include the levels above. e.g. a warning message which may eventually indicate on a possible error. | -/// | MDLogLevel.INFO | Will print info logs and will also include the levels above. e.g. a standard info message. | -/// | MDLogLevel.DEBUG | Will print debug logs and will also include the levels above. e.g. a standard debug message. | -typedef SWIFT_ENUM(NSInteger, MDLogLevel, open) { - MDLogLevelOff = 0, - MDLogLevelFatal = 1, - MDLogLevelError = 2, - MDLogLevelWarn = 3, - MDLogLevelInfo = 4, - MDLogLevelDebug = 5, -}; - -typedef SWIFT_ENUM(NSInteger, MDSDKFrameworkType, open) { - MDSDKFrameworkTypeNative = 0, - MDSDKFrameworkTypeReactNative = 1, - MDSDKFrameworkTypeCordova = 2, -}; - - -/// MedalliaDigital is the main component for the Medallia sdk. -/// It includes the complete set of tools required in order to work with Medallia sdk. -/// Calling sdkInit() method is mandatory before accessing any other method in this API. -SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") -@interface MedalliaDigital : NSObject -/// Private constructor to prevent others from using the default ‘()’ initializer for this class, as this is a singleton. -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -/// This method initializes the SDK and by doing so authenticates the app, and retrieves configuration elements from Medallia Digital. -/// This method is mandatory in order to start Medallia SDK -/// All the following vars are mandatory for init to run. -/// \param token Medallia Digital developer token (can be found in the account section of your Medallia Digital dashboard). Note that this key is assigned per application. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)sdkInitWithToken:(NSString * _Nonnull)token success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// The SDK enables the app to set custom parameters of several types. Define specific parameter to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. -/// The SDK supports the following types: String, Integer(or int), Long(or long), Double(or double), Float(or float), Boolean(or bool) -/// In case the value is not one of these primitive types, custom parameter won’t be saved. -/// value can’t be null. -/// \param name custom parameter name -/// -/// \param value - custom parameter value -/// -+ (void)setCustomParameterWithName:(NSString * _Nonnull)name value:(id _Nonnull)value; -/// The SDK enables the app to set custom parameters of several types. Define multiple parameters to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. -/// For more information, go to : setCustomParameter() -/// \param parameters map of ‘name’(of type String) and ‘value’(of a primitive type). -/// -+ (void)setCustomParameters:(NSDictionary * _Nonnull)parameters; -/// Displaying a form on demand, usually a “Feedback” button in app menu. The SDK must be initialized for form to be displayed. The ‘ShowForm’ API can be called in parallel with the init API. -/// \param formId form id to determine which form should be shown. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)showForm:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Enables the app to launch forms directly from push notifications. Using this API, forms are properly opened once the pushed notification is selected. -/// \param formId form id to determine which form should be shown. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)handleNotification:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Setting a delegate in order to receive form displayed information. This API method allows listening to form related events, e.g. form was submitted. -/// \param formDelegate MDFormDelegate -/// -+ (void)setFormDelegate:(id _Nullable)formDelegate; -/// Setting a delegate in order to receive intercept information (Alert or Banner displayed asking the user whether he/she wants to open form/app rating/ any other engagement type object) -/// \param interceptDelegate MDInterceptDelegate -/// -+ (void)setInterceptDelegate:(id _Nullable)interceptDelegate; -/// Setting a delegate in order to receive feedback payload. This API method allows listening to in-form feedback content submitted by user. -/// \param feedbackDelegate MDFeedbackDelegate -/// -+ (void)setFeedbackDelegate:(id _Nullable)feedbackDelegate; -/// Setting a delegate in order to receive custom intercept payload. This API method allows listening to custom intercept triggering. -/// \param customInterceptDelegate MDCustomInterceptDelegate -/// -+ (void)setCustomInterceptDelegate:(id _Nonnull)customInterceptDelegate; -/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with disableIntercept() as one method disables the intercept and the other re-enables it. -///
    -///
  • -/// This API will not effect showForm API functionality. -/// Customers may consider using this functionality during critical flows such as payment, live support chats, phone calls etc. -/// Intercept is enabled by default. -/// When called, these operations store the values in the application memory i.e. the setting remains available as long as the application is alive. -/// Important note - this API will not affect the showForm functionality -///
  • -///
-+ (void)enableIntercept; -/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with enableIntercept() as one method disables the intercept and the other re-enables it. -///
    -///
  • -/// This API will not effect showForm API functionality. -/// For resuming intercept functionality, go to enableIntercept() -/// Upon every new sdkInit(token: String, success: @escaping () -> Void, failure: @escaping (_ error: MDExternalError) -> Void), the intercept mechanism will be enabled(ergo - enabled by default). -///
  • -///
-+ (void)disableIntercept; -/// Set log level (of type MDLogLevel) to be printed in the console -/// The logs that will be printed will be determined by the provided log level -/// Logs will be printed from this log level and above -/// Default log level in the SDK is .off -/// Note: if you choose log level = .off, there will be no logs at all -/// It is highly recommended to get log level .off when App is in production/Appstore -/// \param logLevel log level to determine which logs will be printed to the console -/// -+ (void)setLogLevel:(enum MDLogLevel)logLevel; -/// Stop SDK API will stop the SDK functionality. -/// In case the API is been called with #clearData parameter true, personalized SDK data will be cleared. -/// \param clearData clear data determines if the personalized data should be cleared in addition to stopping the SDK -/// -+ (void)stopSDKWithClearData:(BOOL)clearData; -/// Revert Stop SDK API will revive the SDK functionality (if it is stopped). -/// In the next session the SDK functionality will start working as expected. -+ (void)revertStopSDK; -/// Set the SDK Frameowrk origin of the app -/// \param mdSdkFrameworkType MDSdkFrameworkType (Native, React Native or Cordova) -/// -+ (void)setSdkFramework:(enum MDSDKFrameworkType)mdSdkFrameworkType; -/// Set the SDK Locale -/// \param locale String?, nil to unset locale -/// -+ (void)updateCustomLocale:(NSString * _Nullable)locale success:(void (^ _Nonnull)(NSString * _Nullable))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Custom Intercept Trigger -/// \param engagementId String -/// -/// \param actionType MDInterceptActionType -/// -/// \param failure Failure Closure -/// -+ (void)customInterceptTriggerWithEngagementId:(NSString * _Nonnull)engagementId actionType:(enum MDInterceptActionType)actionType failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Set Appearance Mode -/// \param appearanceMode MDAppearanceMode (light or dark mode) -/// -+ (void)setCustomAppearance:(enum MDAppearanceMode)appearanceMode; -/// Set Debug Form -/// \param debug Bool true to debug -/// -+ (void)setDebugForm:(BOOL)debug; -/// Close Engagement -/// \param success suceess block -/// -/// \param failure failure block -/// -+ (void)closeEngagementWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -@end - - - - - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#elif defined(__x86_64__) && __x86_64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef MEDALLIADIGITALSDK_SWIFT_H -#define MEDALLIADIGITALSDK_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 "-Wauto-import" -#include -#include -#include -#include - -#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(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#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" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="MedalliaDigitalSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - - -typedef SWIFT_ENUM(NSInteger, MDAppearanceMode, open) { - MDAppearanceModeLight = 0, - MDAppearanceModeDark = 1, - MDAppearanceModeUnknown = 2, -}; - -@class MDCustomInterceptDelegateData; - -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK25MDCustomInterceptDelegate_") -@protocol MDCustomInterceptDelegate -@optional -/// The event is triggered when target evaluation finished succefully -/// \param customInterceptDelegateData MDCustomInterceptDelegateData object that contains: -///
    -///
  • -/// formPreloadTimestamp: represents the epoch time in milliseconds when the specific from preload has happened. -///
  • -///
  • -/// targetingEvaluationTimestamp: represents the epoch time in milliseconds when the specific targeting evaluation has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section. -///
  • -///
  • -/// engagementType: MDEngagementType object that represent the engagement type. -///
  • -///
  • -/// payload: MDCustomInterceptPayload object that contains the intercept payload. -///
  • -///
-/// -- (void)targetEvaluationDidSuccessWithCustomInterceptDelegateData:(MDCustomInterceptDelegateData * _Nonnull)customInterceptDelegateData; -@end - -@class NSString; -enum MDEngagementType : NSInteger; -@class MDCustomInterceptPayload; - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK29MDCustomInterceptDelegateData") -@interface MDCustomInterceptDelegateData : NSObject -@property (nonatomic) double formPreloadTimestamp; -@property (nonatomic) double targetingEvaluationTimestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDEngagementType engagementType; -@property (nonatomic, strong) MDCustomInterceptPayload * _Nonnull payload; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK24MDCustomInterceptPayload") -@interface MDCustomInterceptPayload : NSObject -@property (nonatomic, copy) NSString * _Nullable titleText; -@property (nonatomic, copy) NSString * _Nullable subtitleText; -@property (nonatomic, copy) NSString * _Nullable provideFeedbackText; -@property (nonatomic, copy) NSString * _Nullable declineText; -@property (nonatomic, copy) NSString * _Nullable deferText; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// There are 2 types of SDK engagements: -///
    -///
  • -/// form: Intercept will launch a form survey to collect user feedback -///
  • -///
  • -/// appRating: Intercept will be prompted the user to rate the app in AppStore -///
  • -///
-typedef SWIFT_ENUM(NSInteger, MDEngagementType, open) { - MDEngagementTypeForm = 0, - MDEngagementTypeAppRating = 1, -}; - - -/// This class depicts an error arise from MedalliaDigital class -SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MDExternalError") -@interface MDExternalError : NSObject -///
    -///
  • -/// message: error description message -///
  • -///
-@property (nonatomic) NSInteger statusCode; -///
    -///
  • -/// statusCode: error status code -///
  • -///
-@property (nonatomic, copy) NSString * _Nonnull message; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class MDFeedbackDelegateData; - -/// A delegate for receiving submitted form payload. This API method allows listening to in-form feedback content submitted by user. -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK18MDFeedbackDelegate_") -@protocol MDFeedbackDelegate -@optional -/// The event is triggered when feedback was collected by SDK after “Submit” button was selected. -/// \param feedbackDelegateData DataMDFeedbackDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// feedbackUUID: represents the feedback UUID as it appears in the command center under inbox section, it is the id of the form submitted by user. -///
  • -///
  • -/// payload: a string that contains the submitted feedback components (currently not text and image components) and the user’s feedback UUID, it is in json format. -///
  • -///
-/// -- (void)feedbackDidSubmitWithFeedbackDelegateData:(MDFeedbackDelegateData * _Nonnull)feedbackDelegateData; -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK22MDFeedbackDelegateData") -@interface MDFeedbackDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull feedbackClientCorrelationId; -@property (nonatomic, copy) NSDictionary * _Nonnull payload; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class MDFormDelegateData; - -/// A delegate for receiving a form displayed information. This API method allows listening to form related events, e.g. form was submitted. -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK14MDFormDelegate_") -@protocol MDFormDelegate -@optional -/// This event is triggered when user submitted for. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidSubmitWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when user closed form without submitting feedback. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidDismissWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when SDK closes form (and not user) after submitting feedback. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidCloseWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when a form is displayed via code form or invitation form. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// formLocaleSet: String? -///
  • -///
  • -/// formLocaleDisplay: String? -///
  • -///
-/// -- (void)formDidDisplayWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when form includes blocked external links. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// blockedUrl: external url that has been blocked. -///
  • -///
-/// -- (void)formDidBlockExternalUrlWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when link was selected. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// url: external url that has been selected. -///
  • -///
  • -/// isBlocked: if the url above was blocked then it’s true, otherwise it’s false -///
  • -///
-/// -- (void)formDidLinkSelectWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when the thank you prompt was displayed after the form was submitted -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidThankYouPromptWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -@end - -enum MDFormTriggerType : NSInteger; - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK18MDFormDelegateData") -@interface MDFormDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDFormTriggerType formTriggerType; -@property (nonatomic, copy) NSString * _Nullable url; -@property (nonatomic) BOOL isBlocked; -@property (nonatomic, copy) NSString * _Nullable formLocaleSet; -@property (nonatomic, copy) NSString * _Nullable formLocaleDisplay; -@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceSet; -@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceDisplay; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// There are 2 types of forms, distinguished by their trigger origin: -///
    -///
  • -/// code: Code triggers are to be used as the passive trigger method when the user actively looks to leave feedback, usually a “feedback” menu option. This form is triggered by the app calling MedalliaDigital.showForm() -///
  • -///
  • -/// invite: Invitation triggers, also known as invites or intercepts, are to be used as the proactive trigger method when the app looks to receive contextual feedback using the SDK invite flavours (native alert, SDK banner etc.). This form is triggered automatically by the SDK when setting up survey on the Digital Command Center. -///
  • -///
-typedef SWIFT_ENUM(NSInteger, MDFormTriggerType, open) { -/// Code trigger type - MDFormTriggerTypeCode = 0, -/// Invitation trigger type - MDFormTriggerTypeInvite = 1, -}; - -typedef SWIFT_ENUM(NSInteger, MDInterceptActionType, open) { - MDInterceptActionTypeAccepted = 0, - MDInterceptActionTypeDeclined = 1, - MDInterceptActionTypeDeferred = 2, - MDInterceptActionTypeSkipped = 3, -}; - -@class MDInterceptDelegateData; - -/// A delegate for receiving an intercept displayed information. Allows listening to intercepts related events. i.e. Actions taken by user in Form Invitations and App Rating prompts (App Ratings is coming soon). -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK19MDInterceptDelegate_") -@protocol MDInterceptDelegate -@optional -/// This event is triggered when intercept was displayed to end user. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDisplayWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was accepted by user from alert (usually “Provide Feedback”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidAcceptWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was declined by user from alert (usually “No Thanks”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDeclineWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was deferred by user from alert (usually “Maybe Later”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDeferWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was closed bty the app -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidCloseWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when SKStoreReviewController was triggered by the SDK. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
-/// -- (void)interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK23MDInterceptDelegateData") -@interface MDInterceptDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDEngagementType engagementType; -@property (nonatomic) enum MDAppearanceMode appearanceSet; -@property (nonatomic) enum MDAppearanceMode appearanceDisplay; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// | MDLogLevel | Description | -/// |——————|––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––| -/// | MDLogLevel.OFF | Turns off the SDK logs. As mentioned above, this API should not be integrated in production apps. Using this log level is also not allowed. | -/// | MDLogLevel.FATAL | Will print only fatal logs. e.g. In case a fatal error occurred, the SDK is likely to crash. | -/// | MDLogLevel.ERROR | Will print error logs and will also include the levels above. e.g. An error occurred. It is likely the error is recoverable and available info about what happened will output to console. | -/// | MDLogLevel.WARN | Will print warn logs and will also include the levels above. e.g. a warning message which may eventually indicate on a possible error. | -/// | MDLogLevel.INFO | Will print info logs and will also include the levels above. e.g. a standard info message. | -/// | MDLogLevel.DEBUG | Will print debug logs and will also include the levels above. e.g. a standard debug message. | -typedef SWIFT_ENUM(NSInteger, MDLogLevel, open) { - MDLogLevelOff = 0, - MDLogLevelFatal = 1, - MDLogLevelError = 2, - MDLogLevelWarn = 3, - MDLogLevelInfo = 4, - MDLogLevelDebug = 5, -}; - -typedef SWIFT_ENUM(NSInteger, MDSDKFrameworkType, open) { - MDSDKFrameworkTypeNative = 0, - MDSDKFrameworkTypeReactNative = 1, - MDSDKFrameworkTypeCordova = 2, -}; - - -/// MedalliaDigital is the main component for the Medallia sdk. -/// It includes the complete set of tools required in order to work with Medallia sdk. -/// Calling sdkInit() method is mandatory before accessing any other method in this API. -SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") -@interface MedalliaDigital : NSObject -/// Private constructor to prevent others from using the default ‘()’ initializer for this class, as this is a singleton. -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -/// This method initializes the SDK and by doing so authenticates the app, and retrieves configuration elements from Medallia Digital. -/// This method is mandatory in order to start Medallia SDK -/// All the following vars are mandatory for init to run. -/// \param token Medallia Digital developer token (can be found in the account section of your Medallia Digital dashboard). Note that this key is assigned per application. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)sdkInitWithToken:(NSString * _Nonnull)token success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// The SDK enables the app to set custom parameters of several types. Define specific parameter to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. -/// The SDK supports the following types: String, Integer(or int), Long(or long), Double(or double), Float(or float), Boolean(or bool) -/// In case the value is not one of these primitive types, custom parameter won’t be saved. -/// value can’t be null. -/// \param name custom parameter name -/// -/// \param value - custom parameter value -/// -+ (void)setCustomParameterWithName:(NSString * _Nonnull)name value:(id _Nonnull)value; -/// The SDK enables the app to set custom parameters of several types. Define multiple parameters to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. -/// For more information, go to : setCustomParameter() -/// \param parameters map of ‘name’(of type String) and ‘value’(of a primitive type). -/// -+ (void)setCustomParameters:(NSDictionary * _Nonnull)parameters; -/// Displaying a form on demand, usually a “Feedback” button in app menu. The SDK must be initialized for form to be displayed. The ‘ShowForm’ API can be called in parallel with the init API. -/// \param formId form id to determine which form should be shown. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)showForm:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Enables the app to launch forms directly from push notifications. Using this API, forms are properly opened once the pushed notification is selected. -/// \param formId form id to determine which form should be shown. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)handleNotification:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Setting a delegate in order to receive form displayed information. This API method allows listening to form related events, e.g. form was submitted. -/// \param formDelegate MDFormDelegate -/// -+ (void)setFormDelegate:(id _Nullable)formDelegate; -/// Setting a delegate in order to receive intercept information (Alert or Banner displayed asking the user whether he/she wants to open form/app rating/ any other engagement type object) -/// \param interceptDelegate MDInterceptDelegate -/// -+ (void)setInterceptDelegate:(id _Nullable)interceptDelegate; -/// Setting a delegate in order to receive feedback payload. This API method allows listening to in-form feedback content submitted by user. -/// \param feedbackDelegate MDFeedbackDelegate -/// -+ (void)setFeedbackDelegate:(id _Nullable)feedbackDelegate; -/// Setting a delegate in order to receive custom intercept payload. This API method allows listening to custom intercept triggering. -/// \param customInterceptDelegate MDCustomInterceptDelegate -/// -+ (void)setCustomInterceptDelegate:(id _Nonnull)customInterceptDelegate; -/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with disableIntercept() as one method disables the intercept and the other re-enables it. -///
    -///
  • -/// This API will not effect showForm API functionality. -/// Customers may consider using this functionality during critical flows such as payment, live support chats, phone calls etc. -/// Intercept is enabled by default. -/// When called, these operations store the values in the application memory i.e. the setting remains available as long as the application is alive. -/// Important note - this API will not affect the showForm functionality -///
  • -///
-+ (void)enableIntercept; -/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with enableIntercept() as one method disables the intercept and the other re-enables it. -///
    -///
  • -/// This API will not effect showForm API functionality. -/// For resuming intercept functionality, go to enableIntercept() -/// Upon every new sdkInit(token: String, success: @escaping () -> Void, failure: @escaping (_ error: MDExternalError) -> Void), the intercept mechanism will be enabled(ergo - enabled by default). -///
  • -///
-+ (void)disableIntercept; -/// Set log level (of type MDLogLevel) to be printed in the console -/// The logs that will be printed will be determined by the provided log level -/// Logs will be printed from this log level and above -/// Default log level in the SDK is .off -/// Note: if you choose log level = .off, there will be no logs at all -/// It is highly recommended to get log level .off when App is in production/Appstore -/// \param logLevel log level to determine which logs will be printed to the console -/// -+ (void)setLogLevel:(enum MDLogLevel)logLevel; -/// Stop SDK API will stop the SDK functionality. -/// In case the API is been called with #clearData parameter true, personalized SDK data will be cleared. -/// \param clearData clear data determines if the personalized data should be cleared in addition to stopping the SDK -/// -+ (void)stopSDKWithClearData:(BOOL)clearData; -/// Revert Stop SDK API will revive the SDK functionality (if it is stopped). -/// In the next session the SDK functionality will start working as expected. -+ (void)revertStopSDK; -/// Set the SDK Frameowrk origin of the app -/// \param mdSdkFrameworkType MDSdkFrameworkType (Native, React Native or Cordova) -/// -+ (void)setSdkFramework:(enum MDSDKFrameworkType)mdSdkFrameworkType; -/// Set the SDK Locale -/// \param locale String?, nil to unset locale -/// -+ (void)updateCustomLocale:(NSString * _Nullable)locale success:(void (^ _Nonnull)(NSString * _Nullable))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Custom Intercept Trigger -/// \param engagementId String -/// -/// \param actionType MDInterceptActionType -/// -/// \param failure Failure Closure -/// -+ (void)customInterceptTriggerWithEngagementId:(NSString * _Nonnull)engagementId actionType:(enum MDInterceptActionType)actionType failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Set Appearance Mode -/// \param appearanceMode MDAppearanceMode (light or dark mode) -/// -+ (void)setCustomAppearance:(enum MDAppearanceMode)appearanceMode; -/// Set Debug Form -/// \param debug Bool true to debug -/// -+ (void)setDebugForm:(BOOL)debug; -/// Close Engagement -/// \param success suceess block -/// -/// \param failure failure block -/// -+ (void)closeEngagementWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -@end - - - - - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#elif defined(__i386__) && __i386__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -#ifndef MEDALLIADIGITALSDK_SWIFT_H -#define MEDALLIADIGITALSDK_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 "-Wauto-import" -#include -#include -#include -#include - -#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(IBSegueAction) -# define IBSegueAction -#endif -#if !defined(SWIFT_EXTERN) -# if defined(__cplusplus) -# define SWIFT_EXTERN extern "C" -# else -# define SWIFT_EXTERN extern -# endif -#endif -#if __has_feature(modules) -#if __has_warning("-Watimport-in-framework-header") -#pragma clang diagnostic ignored "-Watimport-in-framework-header" -#endif -@import Foundation; -@import ObjectiveC; -#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" - -#if __has_attribute(external_source_symbol) -# pragma push_macro("any") -# undef any -# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="MedalliaDigitalSDK",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) -# pragma pop_macro("any") -#endif - - - -typedef SWIFT_ENUM(NSInteger, MDAppearanceMode, open) { - MDAppearanceModeLight = 0, - MDAppearanceModeDark = 1, - MDAppearanceModeUnknown = 2, -}; - -@class MDCustomInterceptDelegateData; - -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK25MDCustomInterceptDelegate_") -@protocol MDCustomInterceptDelegate -@optional -/// The event is triggered when target evaluation finished succefully -/// \param customInterceptDelegateData MDCustomInterceptDelegateData object that contains: -///
    -///
  • -/// formPreloadTimestamp: represents the epoch time in milliseconds when the specific from preload has happened. -///
  • -///
  • -/// targetingEvaluationTimestamp: represents the epoch time in milliseconds when the specific targeting evaluation has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section. -///
  • -///
  • -/// engagementType: MDEngagementType object that represent the engagement type. -///
  • -///
  • -/// payload: MDCustomInterceptPayload object that contains the intercept payload. -///
  • -///
-/// -- (void)targetEvaluationDidSuccessWithCustomInterceptDelegateData:(MDCustomInterceptDelegateData * _Nonnull)customInterceptDelegateData; -@end - -@class NSString; -enum MDEngagementType : NSInteger; -@class MDCustomInterceptPayload; - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK29MDCustomInterceptDelegateData") -@interface MDCustomInterceptDelegateData : NSObject -@property (nonatomic) double formPreloadTimestamp; -@property (nonatomic) double targetingEvaluationTimestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDEngagementType engagementType; -@property (nonatomic, strong) MDCustomInterceptPayload * _Nonnull payload; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK24MDCustomInterceptPayload") -@interface MDCustomInterceptPayload : NSObject -@property (nonatomic, copy) NSString * _Nullable titleText; -@property (nonatomic, copy) NSString * _Nullable subtitleText; -@property (nonatomic, copy) NSString * _Nullable provideFeedbackText; -@property (nonatomic, copy) NSString * _Nullable declineText; -@property (nonatomic, copy) NSString * _Nullable deferText; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// There are 2 types of SDK engagements: -///
    -///
  • -/// form: Intercept will launch a form survey to collect user feedback -///
  • -///
  • -/// appRating: Intercept will be prompted the user to rate the app in AppStore -///
  • -///
-typedef SWIFT_ENUM(NSInteger, MDEngagementType, open) { - MDEngagementTypeForm = 0, - MDEngagementTypeAppRating = 1, -}; - - -/// This class depicts an error arise from MedalliaDigital class -SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MDExternalError") -@interface MDExternalError : NSObject -///
    -///
  • -/// message: error description message -///
  • -///
-@property (nonatomic) NSInteger statusCode; -///
    -///
  • -/// statusCode: error status code -///
  • -///
-@property (nonatomic, copy) NSString * _Nonnull message; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class MDFeedbackDelegateData; - -/// A delegate for receiving submitted form payload. This API method allows listening to in-form feedback content submitted by user. -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK18MDFeedbackDelegate_") -@protocol MDFeedbackDelegate -@optional -/// The event is triggered when feedback was collected by SDK after “Submit” button was selected. -/// \param feedbackDelegateData DataMDFeedbackDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// feedbackUUID: represents the feedback UUID as it appears in the command center under inbox section, it is the id of the form submitted by user. -///
  • -///
  • -/// payload: a string that contains the submitted feedback components (currently not text and image components) and the user’s feedback UUID, it is in json format. -///
  • -///
-/// -- (void)feedbackDidSubmitWithFeedbackDelegateData:(MDFeedbackDelegateData * _Nonnull)feedbackDelegateData; -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK22MDFeedbackDelegateData") -@interface MDFeedbackDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull feedbackClientCorrelationId; -@property (nonatomic, copy) NSDictionary * _Nonnull payload; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -@class MDFormDelegateData; - -/// A delegate for receiving a form displayed information. This API method allows listening to form related events, e.g. form was submitted. -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK14MDFormDelegate_") -@protocol MDFormDelegate -@optional -/// This event is triggered when user submitted for. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidSubmitWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when user closed form without submitting feedback. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidDismissWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when SDK closes form (and not user) after submitting feedback. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidCloseWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when a form is displayed via code form or invitation form. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// formLocaleSet: String? -///
  • -///
  • -/// formLocaleDisplay: String? -///
  • -///
-/// -- (void)formDidDisplayWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when form includes blocked external links. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// blockedUrl: external url that has been blocked. -///
  • -///
-/// -- (void)formDidBlockExternalUrlWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when link was selected. -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
  • -/// url: external url that has been selected. -///
  • -///
  • -/// isBlocked: if the url above was blocked then it’s true, otherwise it’s false -///
  • -///
-/// -- (void)formDidLinkSelectWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -/// This event is triggered when the thank you prompt was displayed after the form was submitted -/// \param formDelegateData MDFormDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// formId: represents the form id as it appears in the digital command center under forms section. -///
  • -///
  • -/// formTriggerType: MDFormTriggerType -///
  • -///
-/// -- (void)formDidThankYouPromptWithFormDelegateData:(MDFormDelegateData * _Nonnull)formDelegateData; -@end - -enum MDFormTriggerType : NSInteger; - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK18MDFormDelegateData") -@interface MDFormDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDFormTriggerType formTriggerType; -@property (nonatomic, copy) NSString * _Nullable url; -@property (nonatomic) BOOL isBlocked; -@property (nonatomic, copy) NSString * _Nullable formLocaleSet; -@property (nonatomic, copy) NSString * _Nullable formLocaleDisplay; -@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceSet; -@property (nonatomic) enum MDAppearanceMode formHeaderAppearanceDisplay; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// There are 2 types of forms, distinguished by their trigger origin: -///
    -///
  • -/// code: Code triggers are to be used as the passive trigger method when the user actively looks to leave feedback, usually a “feedback” menu option. This form is triggered by the app calling MedalliaDigital.showForm() -///
  • -///
  • -/// invite: Invitation triggers, also known as invites or intercepts, are to be used as the proactive trigger method when the app looks to receive contextual feedback using the SDK invite flavours (native alert, SDK banner etc.). This form is triggered automatically by the SDK when setting up survey on the Digital Command Center. -///
  • -///
-typedef SWIFT_ENUM(NSInteger, MDFormTriggerType, open) { -/// Code trigger type - MDFormTriggerTypeCode = 0, -/// Invitation trigger type - MDFormTriggerTypeInvite = 1, -}; - -typedef SWIFT_ENUM(NSInteger, MDInterceptActionType, open) { - MDInterceptActionTypeAccepted = 0, - MDInterceptActionTypeDeclined = 1, - MDInterceptActionTypeDeferred = 2, - MDInterceptActionTypeSkipped = 3, -}; - -@class MDInterceptDelegateData; - -/// A delegate for receiving an intercept displayed information. Allows listening to intercepts related events. i.e. Actions taken by user in Form Invitations and App Rating prompts (App Ratings is coming soon). -SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK19MDInterceptDelegate_") -@protocol MDInterceptDelegate -@optional -/// This event is triggered when intercept was displayed to end user. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDisplayWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was accepted by user from alert (usually “Provide Feedback”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidAcceptWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was declined by user from alert (usually “No Thanks”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDeclineWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was deferred by user from alert (usually “Maybe Later”) or SDK banner. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidDeferWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when intercept was closed bty the app -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
  • -/// engagementType: MDEngagementType -///
  • -///
-/// -- (void)interceptDidCloseWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -/// This event is triggered when SKStoreReviewController was triggered by the SDK. -/// \param interceptDelegateData MDInterceptDelegateData object that contains: -///
    -///
  • -/// timestamp: represents the epoch time in milliseconds when the specific event has happened. -///
  • -///
  • -/// engagementId: represents the engagement id as it appears in the digital command center under forms section -///
  • -///
-/// -- (void)interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:(MDInterceptDelegateData * _Nonnull)interceptDelegateData; -@end - - -SWIFT_CLASS("_TtC18MedalliaDigitalSDK23MDInterceptDelegateData") -@interface MDInterceptDelegateData : NSObject -@property (nonatomic) double timestamp; -@property (nonatomic, copy) NSString * _Nonnull engagementId; -@property (nonatomic) enum MDEngagementType engagementType; -@property (nonatomic) enum MDAppearanceMode appearanceSet; -@property (nonatomic) enum MDAppearanceMode appearanceDisplay; -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -@end - -/// | MDLogLevel | Description | -/// |——————|––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––––| -/// | MDLogLevel.OFF | Turns off the SDK logs. As mentioned above, this API should not be integrated in production apps. Using this log level is also not allowed. | -/// | MDLogLevel.FATAL | Will print only fatal logs. e.g. In case a fatal error occurred, the SDK is likely to crash. | -/// | MDLogLevel.ERROR | Will print error logs and will also include the levels above. e.g. An error occurred. It is likely the error is recoverable and available info about what happened will output to console. | -/// | MDLogLevel.WARN | Will print warn logs and will also include the levels above. e.g. a warning message which may eventually indicate on a possible error. | -/// | MDLogLevel.INFO | Will print info logs and will also include the levels above. e.g. a standard info message. | -/// | MDLogLevel.DEBUG | Will print debug logs and will also include the levels above. e.g. a standard debug message. | -typedef SWIFT_ENUM(NSInteger, MDLogLevel, open) { - MDLogLevelOff = 0, - MDLogLevelFatal = 1, - MDLogLevelError = 2, - MDLogLevelWarn = 3, - MDLogLevelInfo = 4, - MDLogLevelDebug = 5, -}; - -typedef SWIFT_ENUM(NSInteger, MDSDKFrameworkType, open) { - MDSDKFrameworkTypeNative = 0, - MDSDKFrameworkTypeReactNative = 1, - MDSDKFrameworkTypeCordova = 2, -}; - - -/// MedalliaDigital is the main component for the Medallia sdk. -/// It includes the complete set of tools required in order to work with Medallia sdk. -/// Calling sdkInit() method is mandatory before accessing any other method in this API. -SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") -@interface MedalliaDigital : NSObject -/// Private constructor to prevent others from using the default ‘()’ initializer for this class, as this is a singleton. -- (nonnull instancetype)init SWIFT_UNAVAILABLE; -+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable"); -/// This method initializes the SDK and by doing so authenticates the app, and retrieves configuration elements from Medallia Digital. -/// This method is mandatory in order to start Medallia SDK -/// All the following vars are mandatory for init to run. -/// \param token Medallia Digital developer token (can be found in the account section of your Medallia Digital dashboard). Note that this key is assigned per application. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)sdkInitWithToken:(NSString * _Nonnull)token success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// The SDK enables the app to set custom parameters of several types. Define specific parameter to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. -/// The SDK supports the following types: String, Integer(or int), Long(or long), Double(or double), Float(or float), Boolean(or bool) -/// In case the value is not one of these primitive types, custom parameter won’t be saved. -/// value can’t be null. -/// \param name custom parameter name -/// -/// \param value - custom parameter value -/// -+ (void)setCustomParameterWithName:(NSString * _Nonnull)name value:(id _Nonnull)value; -/// The SDK enables the app to set custom parameters of several types. Define multiple parameters to add to the submitted feedback and targeting. * If the name specified already exists, it will be overridden. -/// For more information, go to : setCustomParameter() -/// \param parameters map of ‘name’(of type String) and ‘value’(of a primitive type). -/// -+ (void)setCustomParameters:(NSDictionary * _Nonnull)parameters; -/// Displaying a form on demand, usually a “Feedback” button in app menu. The SDK must be initialized for form to be displayed. The ‘ShowForm’ API can be called in parallel with the init API. -/// \param formId form id to determine which form should be shown. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)showForm:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Enables the app to launch forms directly from push notifications. Using this API, forms are properly opened once the pushed notification is selected. -/// \param formId form id to determine which form should be shown. -/// -/// \param success Success Closure -/// -/// \param failure Failure Closure -/// -+ (void)handleNotification:(NSString * _Nonnull)formId success:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Setting a delegate in order to receive form displayed information. This API method allows listening to form related events, e.g. form was submitted. -/// \param formDelegate MDFormDelegate -/// -+ (void)setFormDelegate:(id _Nullable)formDelegate; -/// Setting a delegate in order to receive intercept information (Alert or Banner displayed asking the user whether he/she wants to open form/app rating/ any other engagement type object) -/// \param interceptDelegate MDInterceptDelegate -/// -+ (void)setInterceptDelegate:(id _Nullable)interceptDelegate; -/// Setting a delegate in order to receive feedback payload. This API method allows listening to in-form feedback content submitted by user. -/// \param feedbackDelegate MDFeedbackDelegate -/// -+ (void)setFeedbackDelegate:(id _Nullable)feedbackDelegate; -/// Setting a delegate in order to receive custom intercept payload. This API method allows listening to custom intercept triggering. -/// \param customInterceptDelegate MDCustomInterceptDelegate -/// -+ (void)setCustomInterceptDelegate:(id _Nonnull)customInterceptDelegate; -/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with disableIntercept() as one method disables the intercept and the other re-enables it. -///
    -///
  • -/// This API will not effect showForm API functionality. -/// Customers may consider using this functionality during critical flows such as payment, live support chats, phone calls etc. -/// Intercept is enabled by default. -/// When called, these operations store the values in the application memory i.e. the setting remains available as long as the application is alive. -/// Important note - this API will not affect the showForm functionality -///
  • -///
-+ (void)enableIntercept; -/// Permits app developers to suppress/disable feedback intercepts (and their respective targeting) from being prompted to the user, usually called in critical flows. This method is always bundled together with enableIntercept() as one method disables the intercept and the other re-enables it. -///
    -///
  • -/// This API will not effect showForm API functionality. -/// For resuming intercept functionality, go to enableIntercept() -/// Upon every new sdkInit(token: String, success: @escaping () -> Void, failure: @escaping (_ error: MDExternalError) -> Void), the intercept mechanism will be enabled(ergo - enabled by default). -///
  • -///
-+ (void)disableIntercept; -/// Set log level (of type MDLogLevel) to be printed in the console -/// The logs that will be printed will be determined by the provided log level -/// Logs will be printed from this log level and above -/// Default log level in the SDK is .off -/// Note: if you choose log level = .off, there will be no logs at all -/// It is highly recommended to get log level .off when App is in production/Appstore -/// \param logLevel log level to determine which logs will be printed to the console -/// -+ (void)setLogLevel:(enum MDLogLevel)logLevel; -/// Stop SDK API will stop the SDK functionality. -/// In case the API is been called with #clearData parameter true, personalized SDK data will be cleared. -/// \param clearData clear data determines if the personalized data should be cleared in addition to stopping the SDK -/// -+ (void)stopSDKWithClearData:(BOOL)clearData; -/// Revert Stop SDK API will revive the SDK functionality (if it is stopped). -/// In the next session the SDK functionality will start working as expected. -+ (void)revertStopSDK; -/// Set the SDK Frameowrk origin of the app -/// \param mdSdkFrameworkType MDSdkFrameworkType (Native, React Native or Cordova) -/// -+ (void)setSdkFramework:(enum MDSDKFrameworkType)mdSdkFrameworkType; -/// Set the SDK Locale -/// \param locale String?, nil to unset locale -/// -+ (void)updateCustomLocale:(NSString * _Nullable)locale success:(void (^ _Nonnull)(NSString * _Nullable))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Custom Intercept Trigger -/// \param engagementId String -/// -/// \param actionType MDInterceptActionType -/// -/// \param failure Failure Closure -/// -+ (void)customInterceptTriggerWithEngagementId:(NSString * _Nonnull)engagementId actionType:(enum MDInterceptActionType)actionType failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -/// Set Appearance Mode -/// \param appearanceMode MDAppearanceMode (light or dark mode) -/// -+ (void)setCustomAppearance:(enum MDAppearanceMode)appearanceMode; -/// Set Debug Form -/// \param debug Bool true to debug -/// -+ (void)setDebugForm:(BOOL)debug; -/// Close Engagement -/// \param success suceess block -/// -/// \param failure failure block -/// -+ (void)closeEngagementWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; -@end - - - - - - - - -#if __has_attribute(external_source_symbol) -# pragma clang attribute pop -#endif -#pragma clang diagnostic pop -#endif - -#endif diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Info.plist b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Info.plist deleted file mode 100644 index f472d6a..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Info.plist and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/MedalliaDigitalSDK b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/MedalliaDigitalSDK deleted file mode 100755 index 72291fc..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/MedalliaDigitalSDK and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc deleted file mode 100644 index 34619a4..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftdoc deleted file mode 100644 index 9bef6f9..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc deleted file mode 100644 index f4bfb1d..0000000 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc and /dev/null differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Assets.car b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Assets.car new file mode 100644 index 0000000..4931243 Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Assets.car differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h similarity index 96% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h index ebaa0da..63c9f78 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Headers/MedalliaDigitalSDK-Swift.h @@ -1,6 +1,6 @@ #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef MEDALLIADIGITALSDK_SWIFT_H #define MEDALLIADIGITALSDK_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,14 +204,38 @@ 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 ObjectiveC; +@import UserNotifications; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -208,6 +243,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") @@ -216,6 +252,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) typedef SWIFT_ENUM(NSInteger, MDAppearanceMode, open) { @@ -340,6 +377,7 @@ SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK18MDFeedbackDelegate_") SWIFT_CLASS("_TtC18MedalliaDigitalSDK22MDFeedbackDelegateData") @interface MDFeedbackDelegateData : NSObject @property (nonatomic) double timestamp; +@property (nonatomic, copy) NSString * _Nonnull engagementId; @property (nonatomic, copy) NSString * _Nonnull feedbackClientCorrelationId; @property (nonatomic, copy) NSDictionary * _Nonnull payload; - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -642,6 +680,7 @@ typedef SWIFT_ENUM(NSInteger, MDSDKFrameworkType, open) { MDSDKFrameworkTypeNative = 0, MDSDKFrameworkTypeReactNative = 1, MDSDKFrameworkTypeCordova = 2, + MDSDKFrameworkTypeFlutter = 3, }; @@ -776,6 +815,10 @@ SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") /// \param failure failure block /// + (void)closeEngagementWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// Set User ID +/// \param userId String +/// ++ (void)setUserId:(NSString * _Nullable)userId; @end @@ -785,14 +828,23 @@ SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") + +@interface UNNotificationContent (SWIFT_EXTENSION(MedalliaDigitalSDK)) +@property (nonatomic, readonly) BOOL isMedalliaDigitalSDKNotificationContent; +@property (nonatomic, readonly, copy) NSString * _Nullable medalliaDigitalSDKEngagementId; +@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.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +#elif defined(__x86_64__) && __x86_64__ +// Generated by Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) #ifndef MEDALLIADIGITALSDK_SWIFT_H #define MEDALLIADIGITALSDK_SWIFT_H #pragma clang diagnostic push @@ -815,11 +867,20 @@ SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") # 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 @@ -975,9 +1036,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" @@ -985,14 +1048,38 @@ 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 ObjectiveC; +@import UserNotifications; #endif +#endif #pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" #pragma clang diagnostic ignored "-Wduplicate-method-arg" #if __has_warning("-Wpragma-clang-attribute") @@ -1000,6 +1087,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") @@ -1008,6 +1096,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma pop_macro("any") #endif +#if defined(__OBJC__) typedef SWIFT_ENUM(NSInteger, MDAppearanceMode, open) { @@ -1132,6 +1221,7 @@ SWIFT_PROTOCOL("_TtP18MedalliaDigitalSDK18MDFeedbackDelegate_") SWIFT_CLASS("_TtC18MedalliaDigitalSDK22MDFeedbackDelegateData") @interface MDFeedbackDelegateData : NSObject @property (nonatomic) double timestamp; +@property (nonatomic, copy) NSString * _Nonnull engagementId; @property (nonatomic, copy) NSString * _Nonnull feedbackClientCorrelationId; @property (nonatomic, copy) NSDictionary * _Nonnull payload; - (nonnull instancetype)init SWIFT_UNAVAILABLE; @@ -1434,6 +1524,7 @@ typedef SWIFT_ENUM(NSInteger, MDSDKFrameworkType, open) { MDSDKFrameworkTypeNative = 0, MDSDKFrameworkTypeReactNative = 1, MDSDKFrameworkTypeCordova = 2, + MDSDKFrameworkTypeFlutter = 3, }; @@ -1568,6 +1659,10 @@ SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") /// \param failure failure block /// + (void)closeEngagementWithSuccess:(void (^ _Nonnull)(void))success failure:(void (^ _Nonnull)(MDExternalError * _Nonnull))failure; +/// Set User ID +/// \param userId String +/// ++ (void)setUserId:(NSString * _Nullable)userId; @end @@ -1577,10 +1672,21 @@ SWIFT_CLASS("_TtC18MedalliaDigitalSDK15MedalliaDigital") + +@interface UNNotificationContent (SWIFT_EXTENSION(MedalliaDigitalSDK)) +@property (nonatomic, readonly) BOOL isMedalliaDigitalSDKNotificationContent; +@property (nonatomic, readonly, copy) NSString * _Nullable medalliaDigitalSDKEngagementId; +@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/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Info.plist b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Info.plist similarity index 50% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Info.plist rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Info.plist index 505e3b8..0d2d8a1 100644 Binary files a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_armv7/MedalliaDigitalSDK.framework/Info.plist and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Info.plist differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/MedalliaDigitalSDK b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/MedalliaDigitalSDK new file mode 100644 index 0000000..54e0897 Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/MedalliaDigitalSDK differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.abi.json b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..68fa1af --- /dev/null +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.abi.json @@ -0,0 +1,20063 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MedalliaDigital", + "printedName": "MedalliaDigital", + "children": [ + { + "kind": "Function", + "name": "sdkInit", + "printedName": "sdkInit(token:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)sdkInitWithToken:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C7sdkInit5token7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomParameter", + "printedName": "setCustomParameter(name:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomParameterWithName:value:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18setCustomParameter4name5valueySS_yptFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomParameters", + "printedName": "setCustomParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomParameters:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setCustomParametersyySDySSypGFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showForm", + "printedName": "showForm(_:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)showForm:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C8showForm_7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleNotification", + "printedName": "handleNotification(_:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)handleNotification:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18handleNotification_7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setFormDelegate", + "printedName": "setFormDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFormDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormDelegate", + "printedName": "MedalliaDigitalSDK.MDFormDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setFormDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15setFormDelegateyyAA06MDFormF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInterceptDelegate", + "printedName": "setInterceptDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptDelegate", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setInterceptDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C20setInterceptDelegateyyAA011MDInterceptF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setFeedbackDelegate", + "printedName": "setFeedbackDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegate", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setFeedbackDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setFeedbackDelegateyyAA010MDFeedbackF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomInterceptDelegate", + "printedName": "setCustomInterceptDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegate", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomInterceptDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C26setCustomInterceptDelegateyyAA08MDCustomfG0_pFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableIntercept", + "printedName": "enableIntercept()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)enableIntercept", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15enableInterceptyyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableIntercept", + "printedName": "disableIntercept()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)disableIntercept", + "mangledName": "$s18MedalliaDigitalSDK0aB0C16disableInterceptyyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLogLevel", + "printedName": "setLogLevel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setLogLevel:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C11setLogLevelyyAA05MDLogF0OFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSDK", + "printedName": "stopSDK(clearData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)stopSDKWithClearData:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C04stopC09clearDataySb_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "revertStopSDK", + "printedName": "revertStopSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)revertStopSDK", + "mangledName": "$s18MedalliaDigitalSDK0aB0C010revertStopC0yyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSdkFramework", + "printedName": "setSdkFramework(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setSdkFramework:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15setSdkFrameworkyyAA18MDSDKFrameworkTypeOFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateCustomLocale", + "printedName": "updateCustomLocale(_:success:failure:)", + "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" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)updateCustomLocale:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18updateCustomLocale_7success7failureySSSg_yAGcyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "customInterceptTrigger", + "printedName": "customInterceptTrigger(engagementId:actionType:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)customInterceptTriggerWithEngagementId:actionType:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C22customInterceptTrigger12engagementId10actionType7failureySS_AA017MDInterceptActionJ0OyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomAppearance", + "printedName": "setCustomAppearance(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomAppearance:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setCustomAppearanceyyAA16MDAppearanceModeOFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDebugForm", + "printedName": "setDebugForm(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setDebugForm:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C12setDebugFormyySbFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closeEngagement", + "printedName": "closeEngagement(success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)closeEngagementWithSuccess:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15closeEngagement7success7failureyyyc_yAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUserId", + "printedName": "setUserId(_:)", + "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": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setUserId:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C9setUserIdyySSSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital", + "mangledName": "$s18MedalliaDigitalSDK0aB0C", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "RawDocComment", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFeedbackDelegate", + "printedName": "MDFeedbackDelegate", + "children": [ + { + "kind": "Function", + "name": "feedbackDidSubmit", + "printedName": "feedbackDidSubmit(feedbackDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegateData", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate(im)feedbackDidSubmitWithFeedbackDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK18MDFeedbackDelegateP17feedbackDidSubmit0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFeedbackDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "feedbackDidSubmitWithFeedbackDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate", + "mangledName": "$s18MedalliaDigitalSDK18MDFeedbackDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "zlib", + "printedName": "zlib", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormDelegateData", + "printedName": "MDFormDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formTriggerType", + "printedName": "formTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formTriggerType", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formTriggerType", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormTriggerType:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0OvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)url", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)url", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setUrl:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isBlocked", + "printedName": "isBlocked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)isBlocked", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)isBlocked", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setIsBlocked:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formLocaleSet", + "printedName": "formLocaleSet", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formLocaleSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formLocaleSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormLocaleSet:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formLocaleDisplay", + "printedName": "formLocaleDisplay", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formLocaleDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formLocaleDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormLocaleDisplay:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formHeaderAppearanceSet", + "printedName": "formHeaderAppearanceSet", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formHeaderAppearanceSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formHeaderAppearanceSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormHeaderAppearanceSet:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formHeaderAppearanceDisplay", + "printedName": "formHeaderAppearanceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formHeaderAppearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formHeaderAppearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormHeaderAppearanceDisplay:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreFoundation", + "printedName": "CoreFoundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDExternalError", + "printedName": "MDExternalError", + "children": [ + { + "kind": "Var", + "name": "statusCode", + "printedName": "statusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(py)statusCode", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC", "RawDocComment"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)statusCode", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)setStatusCode:", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivM", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(py)message", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC", "RawDocComment"], + "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@MedalliaDigitalSDK@objc(cs)MDExternalError(im)message", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)setMessage:", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK15MDExternalErrorC7messageSSvM", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)init", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIDevice", + "printedName": "UIKit.UIDevice", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "JavaScriptCore", + "printedName": "JavaScriptCore", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormDelegate", + "printedName": "MDFormDelegate", + "children": [ + { + "kind": "Function", + "name": "formDidSubmit", + "printedName": "formDidSubmit(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidSubmitWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP13formDidSubmit0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidSubmitWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidDismiss", + "printedName": "formDidDismiss(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidDismissWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP14formDidDismiss0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidDismissWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidClose", + "printedName": "formDidClose(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidCloseWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP12formDidClose0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidCloseWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidDisplay", + "printedName": "formDidDisplay(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidDisplayWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP14formDidDisplay0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidDisplayWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidBlockExternalUrl", + "printedName": "formDidBlockExternalUrl(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidBlockExternalUrlWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP23formDidBlockExternalUrl0fE4DatayAA0deK0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidBlockExternalUrlWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidLinkSelect", + "printedName": "formDidLinkSelect(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidLinkSelectWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP17formDidLinkSelect0fE4DatayAA0deJ0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidLinkSelectWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidThankYouPrompt", + "printedName": "formDidThankYouPrompt(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidThankYouPromptWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP21formDidThankYouPrompt0fE4DatayAA0deK0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidThankYouPromptWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptActionType", + "printedName": "MDInterceptActionType", + "children": [ + { + "kind": "Var", + "name": "accepted", + "printedName": "accepted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeAccepted", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8acceptedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "declined", + "printedName": "declined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeDeclined", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8declinedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "deferred", + "printedName": "deferred", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeDeferred", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8deferredyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "skipped", + "printedName": "skipped", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeSkipped", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO7skippedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "PreviewAppBridgeDelegate", + "printedName": "PreviewAppBridgeDelegate", + "children": [ + { + "kind": "Function", + "name": "formDidClose", + "printedName": "formDidClose()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP12formDidCloseyyF", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP12formDidCloseyyF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.PreviewAppBridgeDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidSubmit", + "printedName": "formDidSubmit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP13formDidSubmityyF", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP13formDidSubmityyF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.PreviewAppBridgeDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptDelegate", + "printedName": "MDInterceptDelegate", + "children": [ + { + "kind": "Function", + "name": "interceptDidDisplay", + "printedName": "interceptDidDisplay(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDisplayWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP19interceptDidDisplay0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDisplayWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidAccept", + "printedName": "interceptDidAccept(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidAcceptWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP18interceptDidAccept0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidAcceptWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidDecline", + "printedName": "interceptDidDecline(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDeclineWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP19interceptDidDecline0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDeclineWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidDefer", + "printedName": "interceptDidDefer(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDeferWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP17interceptDidDefer0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDeferWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidClose", + "printedName": "interceptDidClose(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidCloseWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP17interceptDidClose0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidCloseWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidTriggerSKStoreReviewController", + "printedName": "interceptDidTriggerSKStoreReviewController(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP42interceptDidTriggerSKStoreReviewController0fE4DatayAA0deL0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptDelegate", + "printedName": "MDCustomInterceptDelegate", + "children": [ + { + "kind": "Function", + "name": "targetEvaluationDidSuccess", + "printedName": "targetEvaluationDidSuccess(customInterceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate(im)targetEvaluationDidSuccessWithCustomInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK25MDCustomInterceptDelegateP26targetEvaluationDidSuccess06customeF4DatayAA0defL0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDCustomInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "targetEvaluationDidSuccessWithCustomInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate", + "mangledName": "$s18MedalliaDigitalSDK25MDCustomInterceptDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFeedbackDelegateData", + "printedName": "MDFeedbackDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "feedbackClientCorrelationId", + "printedName": "feedbackClientCorrelationId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)feedbackClientCorrelationId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)feedbackClientCorrelationId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setFeedbackClientCorrelationId:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)payload", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)payload", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setPayload:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegateData", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Compression", + "printedName": "Compression", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDLogLevel", + "printedName": "MDLogLevel", + "children": [ + { + "kind": "Var", + "name": "off", + "printedName": "off", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelOff", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO3offyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelFatal", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5fatalyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelError", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5erroryA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelWarn", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO4warnyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelInfo", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO4infoyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelDebug", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5debugyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 5 + }, + { + "kind": "Function", + "name": "stringRepresentation", + "printedName": "stringRepresentation()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO20stringRepresentationSSyF", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO20stringRepresentationSSyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDLogLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvpZ", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvpZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvgZ", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvgZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormTriggerType", + "printedName": "MDFormTriggerType", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDFormTriggerType.Type) -> MedalliaDigitalSDK.MDFormTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType@MDFormTriggerTypeCode", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO4codeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment", "ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "invite", + "printedName": "invite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDFormTriggerType.Type) -> MedalliaDigitalSDK.MDFormTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType@MDFormTriggerTypeInvite", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO6inviteyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment", "ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptPayload", + "printedName": "MDCustomInterceptPayload", + "children": [ + { + "kind": "Var", + "name": "titleText", + "printedName": "titleText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)titleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)titleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setTitleText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "subtitleText", + "printedName": "subtitleText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)subtitleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)subtitleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setSubtitleText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "provideFeedbackText", + "printedName": "provideFeedbackText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)provideFeedbackText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)provideFeedbackText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setProvideFeedbackText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declineText", + "printedName": "declineText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)declineText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)declineText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setDeclineText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deferText", + "printedName": "deferText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)deferText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)deferText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setDeferText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)init", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptDelegateData", + "printedName": "MDCustomInterceptDelegateData", + "children": [ + { + "kind": "Var", + "name": "formPreloadTimestamp", + "printedName": "formPreloadTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)formPreloadTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)formPreloadTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setFormPreloadTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "targetingEvaluationTimestamp", + "printedName": "targetingEvaluationTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)targetingEvaluationTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)targetingEvaluationTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setTargetingEvaluationTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementType", + "printedName": "engagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)engagementType", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)engagementType", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setEngagementType:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0OvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)payload", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)payload", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setPayload:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptDelegateData", + "printedName": "MDInterceptDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementType", + "printedName": "engagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)engagementType", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)engagementType", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setEngagementType:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0OvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appearanceSet", + "printedName": "appearanceSet", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)appearanceSet", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)appearanceSet", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setAppearanceSet:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appearanceDisplay", + "printedName": "appearanceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)appearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)appearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setAppearanceDisplay:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDAppearanceMode", + "printedName": "MDAppearanceMode", + "children": [ + { + "kind": "Var", + "name": "light", + "printedName": "light", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeLight", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO5lightyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "dark", + "printedName": "dark", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeDark", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO4darkyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeUnknown", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO7unknownyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "toString", + "printedName": "toString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8toStringSSyF", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8toStringSSyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDEngagementType", + "printedName": "MDEngagementType", + "children": [ + { + "kind": "Var", + "name": "form", + "printedName": "form", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDEngagementType.Type) -> MedalliaDigitalSDK.MDEngagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDEngagementType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType@MDEngagementTypeForm", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO4formyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appRating", + "printedName": "appRating", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDEngagementType.Type) -> MedalliaDigitalSDK.MDEngagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDEngagementType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType@MDEngagementTypeAppRating", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO9appRatingyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDEngagementType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDSDKFrameworkType", + "printedName": "MDSDKFrameworkType", + "children": [ + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeNative", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO6nativeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "reactNative", + "printedName": "reactNative", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeReactNative", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO11reactNativeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cordova", + "printedName": "cordova", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeCordova", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO7cordovayA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "flutter", + "printedName": "flutter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeFlutter", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO7flutteryA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "UNNotificationContent", + "printedName": "UNNotificationContent", + "children": [ + { + "kind": "Var", + "name": "isMedalliaDigitalSDKNotificationContent", + "printedName": "isMedalliaDigitalSDKNotificationContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(py)isMedalliaDigitalSDKNotificationContent", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE02iscd15SDKNotificationB0Sbvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(im)isMedalliaDigitalSDKNotificationContent", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE02iscd15SDKNotificationB0Sbvg", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "medalliaDigitalSDKEngagementId", + "printedName": "medalliaDigitalSDKEngagementId", + "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:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(py)medalliaDigitalSDKEngagementId", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE08medalliaD15SDKEngagementIdSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": 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:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(im)medalliaDigitalSDKEngagementId", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE08medalliaD15SDKEngagementIdSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UNNotificationContent", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNNotificationContent", + "declAttributes": ["Available", "ObjC", "Dynamic"], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "UIImage", + "printedName": "UIImage", + "children": [ + { + "kind": "Function", + "name": "gif", + "printedName": "gif(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif4dataABSg10Foundation4DataV_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif4dataABSg10Foundation4DataV_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gif", + "printedName": "gif(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif3urlABSgSS_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif3urlABSgSS_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gif", + "printedName": "gif(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif4nameABSgSS_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif4nameABSgSS_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIImage", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIImage", + "declAttributes": ["Available", "ObjC", "SynthesizedProtocol", "NonSendable", "Sendable", "Dynamic"], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "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": "Conformance", + "name": "_ExpressibleByImageLiteral", + "printedName": "_ExpressibleByImageLiteral", + "usr": "s:s26_ExpressibleByImageLiteralP", + "mangledName": "$ss26_ExpressibleByImageLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Function", + "name": "gunzipped", + "printedName": "gunzipped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV18MedalliaDigitalSDKE9gunzippedACSgyF", + "mangledName": "$s10Foundation4DataV18MedalliaDigitalSDKE9gunzippedACSgyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "declAttributes": ["Frozen"], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "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": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluatorV2.swift", + "kind": "BooleanLiteral", + "offset": 288, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluatorV2.swift", + "kind": "BooleanLiteral", + "offset": 610, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/UserJourneyTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 22, + "value": "\"UserJourneyTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "StringLiteral", + "offset": 2132, + "length": 12, + "value": "\"MedalliaDigitalSDK.RequestError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MedalliaDigital.swift", + "kind": "BooleanLiteral", + "offset": 8603, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 236, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 236, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "BooleanLiteral", + "offset": 3178, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "BooleanLiteral", + "offset": 3219, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomAppearanceEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetCustomAppearanceEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 35, + "value": "\"application/x-www-form-urlencoded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 18, + "value": "\"application/json\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 35, + "value": "\"application/x-www-form-urlencoded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 18, + "value": "\"application/json\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 425, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 425, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetInterceptListenerEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.SetInterceptListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 345, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 379, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 384, + "length": 4, + "value": "1000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 504, + "length": 12, + "value": "\"yyyy-MM-dd\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 574, + "length": 20, + "value": "\"dd-MM HH:mm:ss.SSS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 36, + "value": "\"MDLogMessageDidLogNotificationName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 41, + "value": "\"MDLogMessageNotificationUserInfoMessage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 42, + "value": "\"MDLogMessageNotificationUserInfoLogLevel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 29, + "value": "\"com.medallia.logsEventQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 1582, + "length": 22, + "value": "\"com.medallia.digital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastDeclineTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 38, + "value": "\"MedalliaDigitalSDK.AppRatingLastDeclineTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/InvitationDisplayedCollector.swift", + "kind": "StringLiteral", + "offset": 207, + "length": 28, + "value": "\"MedalliaDigitalSDK.InvitationDisplayedCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 9, + "value": "\"Bearer_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 353, + "length": 9, + "value": "\"Form ID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 393, + "length": 11, + "value": "\"Form Name\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 440, + "length": 17, + "value": "\"mec_question_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 498, + "length": 23, + "value": "\"mec_external_media_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 15, + "value": "\"mec_ballot_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 13, + "value": "\"userJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 770, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "BooleanLiteral", + "offset": 20159, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/PromptDisplayedCollector.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 24, + "value": "\"MedalliaDigitalSDK.PromptDisplayedCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/IsOCQUserSetCollector.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.IsOCQUserSetCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/ShowFormCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.ShowFormCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFormDelegateData.swift", + "kind": "BooleanLiteral", + "offset": 746, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFormDelegateData.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 18, + "value": "\"MedalliaDigitalSDK.MDFormDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptTriggeredEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.PromptTriggeredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/JWToken.swift", + "kind": "Dictionary", + "offset": 460, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/JWToken.swift", + "kind": "Dictionary", + "offset": 491, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/ApiToken.swift", + "kind": "StringLiteral", + "offset": 169, + "length": 8, + "value": "\"MedalliaDigitalSDK.ApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomInterceptListenerEvent.swift", + "kind": "StringLiteral", + "offset": 201, + "length": 31, + "value": "\"MedalliaDigitalSDK.SetCustomInterceptListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 252, + "length": 3, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 1212, + "length": 4, + "value": "30.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 1346, + "length": 4, + "value": "30.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/DisableInterceptEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.DisableInterceptEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetFeedbackCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetFeedbackCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1609, + "length": 2, + "value": "30" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1952, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 2732, + "length": 2, + "value": "46" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 400, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 451, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 484, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 546, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 583, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 636, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 690, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 744, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/PreviewApp/Managers/FilesManager.swift", + "kind": "StringLiteral", + "offset": 290, + "length": 20, + "value": "\"MedalliaPreviewApp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/DeleteStorageEvent.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 18, + "value": "\"MedalliaDigitalSDK.DeleteStorageEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Serialization.swift", + "kind": "BooleanLiteral", + "offset": 1299, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 256, + "length": 21, + "value": "\"medallia_form_title\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 29, + "value": "\"medallia_modal_close_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 33, + "value": "\"medallia_banner_feedback_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 30, + "value": "\"medallia_banner_close_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 541, + "length": 33, + "value": "\"medallia_banner_title_text_view\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 35, + "value": "\"medallia_banner_message_text_view\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/GetResourceClient.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 17, + "value": "\"MedalliaDigitalSDK.GetResourceClient\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/QuarantineValidationClient.swift", + "kind": "StringLiteral", + "offset": 504, + "length": 27, + "value": "\"CUUID file does not exist\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastTriggerTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 38, + "value": "\"MedalliaDigitalSDK.AppRatingLastTriggerTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.PromptDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/InitCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 17, + "value": "\"MedalliaDigitalSDK.InitCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/CsatCollector.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 13, + "value": "\"MedalliaDigitalSDK.CsatCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/AnalyticsTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 405, + "length": 20, + "value": "\"AnalyticsTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"Cancel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 323, + "length": 49, + "value": "\"Are You Sure You Want To Delete Captured Media?\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 405, + "length": 8, + "value": "\"Delete\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 469, + "length": 25, + "value": "\"Replace Captured Media?\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 549, + "length": 85, + "value": "\"Only one file may be captured. You are about to delete the previous captured media.\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 668, + "length": 9, + "value": "\"Replace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 718, + "length": 12, + "value": "\"Data Usage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 770, + "length": 147, + "value": "\"You are using a cellular data connection. Your captured media is large and will drain up your package, it is recommended to use a WiFi connection\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 955, + "length": 16, + "value": "\"No Permissions\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1008, + "length": 43, + "value": "\"The requested action cannot be completed.\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1083, + "length": 8, + "value": "\"Got it\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 6, + "value": "\"Back\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1160, + "length": 7, + "value": "\"Alert\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetUserIdEvent.swift", + "kind": "StringLiteral", + "offset": 184, + "length": 14, + "value": "\"MedalliaDigitalSDK.SetUserIdEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetInterceptCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.SetInterceptCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 12, + "value": "\"MDApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 332, + "length": 15, + "value": "\"MDAccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 406, + "length": 10, + "value": "\"MDUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 18, + "value": "\"MDpreviousUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 552, + "length": 21, + "value": "\"MDPreviousSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 632, + "length": 13, + "value": "\"MDSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 18, + "value": "\"MDSessionCounter\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 20, + "value": "\"MDCustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 16, + "value": "\"MDTargetEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 935, + "length": 29, + "value": "\"MDConfigurationUUIDContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1056, + "length": 11, + "value": "\"MDOcqUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 9, + "value": "\"MDcUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1194, + "length": 12, + "value": "\"MDCUuidURL\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 18, + "value": "\"MDLastSdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 17, + "value": "\"MDLastOsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1418, + "length": 20, + "value": "\"MDSdkKillTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 23, + "value": "\"MDSdkRecoverTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1579, + "length": 15, + "value": "\"MDIsSdkKilled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 16, + "value": "\"MDisSdkStopped\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 43, + "value": "\"MDShouldCheckSDKRestoreFromKillOnOsChange\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 17, + "value": "\"MDRevertStopSdk\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1906, + "length": 25, + "value": "\"MDPreviousIsAnalyticsV2\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1990, + "length": 33, + "value": "\"MDPreviousShouldSendUserJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2082, + "length": 12, + "value": "\"MDDeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 18, + "value": "\"MDFormsAvailable\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2230, + "length": 31, + "value": "\"MDLocalConfigurationTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 16, + "value": "\"MDSdkFramewrok\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 10, + "value": "\"MDLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2464, + "length": 12, + "value": "\"MDOsLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2535, + "length": 31, + "value": "\"MSIsUpdateCustomLocaleWithApi\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2625, + "length": 21, + "value": "\"MDAppAppearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2705, + "length": 15, + "value": "\"MDIsDebugForm\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 28, + "value": "\"MDDeliveredNotificationIds\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2866, + "length": 20, + "value": "\"MDPreInitCallbacks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2945, + "length": 24, + "value": "\"MDIsPreInitUserIdEmpty\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 12, + "value": "\"MDApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 332, + "length": 15, + "value": "\"MDAccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 406, + "length": 10, + "value": "\"MDUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 18, + "value": "\"MDpreviousUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 552, + "length": 21, + "value": "\"MDPreviousSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 632, + "length": 13, + "value": "\"MDSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 18, + "value": "\"MDSessionCounter\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 20, + "value": "\"MDCustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 16, + "value": "\"MDTargetEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 935, + "length": 29, + "value": "\"MDConfigurationUUIDContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1056, + "length": 11, + "value": "\"MDOcqUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 9, + "value": "\"MDcUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1194, + "length": 12, + "value": "\"MDCUuidURL\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 18, + "value": "\"MDLastSdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 17, + "value": "\"MDLastOsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1418, + "length": 20, + "value": "\"MDSdkKillTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 23, + "value": "\"MDSdkRecoverTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1579, + "length": 15, + "value": "\"MDIsSdkKilled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 16, + "value": "\"MDisSdkStopped\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 43, + "value": "\"MDShouldCheckSDKRestoreFromKillOnOsChange\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 17, + "value": "\"MDRevertStopSdk\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1906, + "length": 25, + "value": "\"MDPreviousIsAnalyticsV2\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1990, + "length": 33, + "value": "\"MDPreviousShouldSendUserJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2082, + "length": 12, + "value": "\"MDDeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 18, + "value": "\"MDFormsAvailable\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2230, + "length": 31, + "value": "\"MDLocalConfigurationTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 16, + "value": "\"MDSdkFramewrok\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 10, + "value": "\"MDLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2464, + "length": 12, + "value": "\"MDOsLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2535, + "length": 31, + "value": "\"MSIsUpdateCustomLocaleWithApi\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2625, + "length": 21, + "value": "\"MDAppAppearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2705, + "length": 15, + "value": "\"MDIsDebugForm\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 28, + "value": "\"MDDeliveredNotificationIds\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2866, + "length": 20, + "value": "\"MDPreInitCallbacks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2945, + "length": 24, + "value": "\"MDIsPreInitUserIdEmpty\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ModelFactory/ModelFactory.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 5, + "value": "60000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 328, + "length": 5, + "value": "60000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 478, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 5, + "value": "10000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "BooleanLiteral", + "offset": 900, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 4, + "value": "2500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "FloatLiteral", + "offset": 1000, + "length": 4, + "value": "15.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 4, + "value": "7000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 1114, + "length": 9, + "value": "604800000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "FloatLiteral", + "offset": 1180, + "length": 4, + "value": "55.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 337, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 571, + "length": 2, + "value": "90" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 770, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "Array", + "offset": 1078, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1113, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1153, + "length": 1, + "value": "7" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1197, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "Dictionary", + "offset": 2181, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 8177, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 23379, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 31730, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/StopSDKEvent.swift", + "kind": "StringLiteral", + "offset": 182, + "length": 12, + "value": "\"MedalliaDigitalSDK.StopSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 15, + "value": "\"MedalliaDigitalSDK.MDExternalError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/KillSwitch/KillSwitch.swift", + "kind": "FloatLiteral", + "offset": 2010, + "length": 4, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/AppRatingContract.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 17, + "value": "\"MedalliaDigitalSDK.AppRatingContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "StringLiteral", + "offset": 299, + "length": 13, + "value": "\"MedalliaDigitalSDK.InternalError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/AccessToken.swift", + "kind": "StringLiteral", + "offset": 172, + "length": 11, + "value": "\"MedalliaDigitalSDK.AccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/PropertyIdCollector.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 19, + "value": "\"MedalliaDigitalSDK.PropertyIdCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "BooleanLiteral", + "offset": 529, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/SynchronizedDictionary.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 37, + "value": "\"com.medallia.synchronizedDictionary\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/EventCollector.swift", + "kind": "BooleanLiteral", + "offset": 406, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/EventCollector.swift", + "kind": "StringLiteral", + "offset": 271, + "length": 14, + "value": "\"MedalliaDigitalSDK.EventCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "StringLiteral", + "offset": 363, + "length": 16, + "value": "\"MedalliaDigitalSDK.PollingCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RestClientEvent.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 15, + "value": "\"MedalliaDigitalSDK.RestClientEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/HandleNotificationEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.HandleNotificationEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFullFormViewController.swift", + "kind": "StringLiteral", + "offset": 330, + "length": 12, + "value": "\"BackButton\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInCurrentForegroundCollector.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 32, + "value": "\"MedalliaDigitalSDK.TimeInCurrentForegroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomParametersEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetCustomParametersEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 551, + "length": 7, + "value": "\"2.0.0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 18, + "value": "\"targetRuleEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 661, + "length": 5, + "value": "\"tre\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 727, + "length": 25, + "value": "\"/\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 745, + "length": 2, + "value": "\"-%@.js\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "BooleanLiteral", + "offset": 1675, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDAlertController.swift", + "kind": "BooleanLiteral", + "offset": 244, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 224, + "length": 5, + "value": "10000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 349, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 467, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 585, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 716, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 850, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 971, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1095, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1219, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1327, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1438, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1555, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1671, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1781, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1891, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1995, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2109, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2341, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2448, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2560, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2672, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2801, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2915, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3030, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3145, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3262, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 3304, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3390, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3502, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3625, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3739, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3861, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3982, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4090, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4205, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4319, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4444, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4561, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4679, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4797, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4915, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5038, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5148, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5253, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5385, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5516, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5647, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5758, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5885, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6011, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6125, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6242, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6374, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6498, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/RevertStopSDKEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.RevertStopSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 557, + "length": 4, + "value": "36.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 610, + "length": 4, + "value": "88.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 663, + "length": 4, + "value": "43.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 712, + "length": 5, + "value": "200.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 763, + "length": 5, + "value": "300.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 815, + "length": 4, + "value": "14.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 860, + "length": 4, + "value": "20.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 918, + "length": 4, + "value": "17.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 979, + "length": 3, + "value": "4.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1035, + "length": 4, + "value": "20.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1083, + "length": 4, + "value": "25.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1131, + "length": 3, + "value": "5.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "BooleanLiteral", + "offset": 1642, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "BooleanLiteral", + "offset": 1836, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/BatteryPercentageCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 26, + "value": "\"MedalliaDigitalSDK.BatteryPercentageCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetFeedbackListenerEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetFeedbackListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/UserJourney/UserJourney.swift", + "kind": "BooleanLiteral", + "offset": 329, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetInvitationCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.SetInvitationCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/MediaCaptureCollectedEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.MediaCaptureCollectedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 257, + "length": 9, + "value": "\"#FFFFFF\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 9, + "value": "\"#2C3548\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 9, + "value": "\"#007AFF\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 498, + "length": 9, + "value": "\"#0049D3\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Authenticator/Authenticator.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/VoiceOverCollector.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 18, + "value": "\"MedalliaDigitalSDK.VoiceOverCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/FeedbackTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 19, + "value": "\"FeedbackTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 296, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 317, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 296, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 317, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/GlobalConstants.swift", + "kind": "StringLiteral", + "offset": 241, + "length": 32, + "value": "\"com.medallia.digital.MobileSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/GlobalConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 27, + "value": "\"timeInBackgroundEventName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 741, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 787, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 826, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3766, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3831, + "length": 9, + "value": "\"#cccccc\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3884, + "length": 8, + "value": "\"System\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3940, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 4000, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "IntegerLiteral", + "offset": 4066, + "length": 4, + "value": "5000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Reading.swift", + "kind": "BooleanLiteral", + "offset": 1012, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Reading.swift", + "kind": "BooleanLiteral", + "offset": 4125, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.InvitationDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RestoreFromKillSDKEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 23, + "value": "\"MedalliaDigitalSDK.RestoreFromKillSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/SDKConfigurationFormContract.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 28, + "value": "\"MedalliaDigitalSDK.SDKConfigurationFormContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/TargetEvaluatorEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.TargetEvaluatorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 5, + "value": "\"en0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 232, + "length": 9, + "value": "\"pdp_ip0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 5, + "value": "\"en0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 232, + "length": 9, + "value": "\"pdp_ip0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TriggerNodeContract.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 19, + "value": "\"MedalliaDigitalSDK.TriggerNodeContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetFormCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.SetFormCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 300, + "length": 3, + "value": "0.4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 338, + "length": 3, + "value": "0.3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 385, + "length": 4, + "value": "1.02" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 433, + "length": 3, + "value": "0.8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 477, + "length": 3, + "value": "0.7" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 742, + "length": 3, + "value": "0.5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/MediaCaptureSubmitEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.MediaCaptureSubmitEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 244, + "length": 3, + "value": "8.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 251, + "length": 6, + "value": "1024.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 260, + "length": 6, + "value": "1024.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadSingleResourceOperation.swift", + "kind": "StringLiteral", + "offset": 286, + "length": 27, + "value": "\"MedalliaDigitalSDK.LoadSingleResourceOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 289, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 330, + "length": 12, + "value": "\"appVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 8, + "value": "\"osType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 7, + "value": "\"appId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 10, + "value": "\"deviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 13, + "value": "\"deviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1225, + "length": 18, + "value": "\"mobileDeviceData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1282, + "length": 18, + "value": "\"deviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1335, + "length": 14, + "value": "\"deviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1384, + "length": 14, + "value": "\"deviceLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1433, + "length": 14, + "value": "\"formLanguage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 16, + "value": "\"appearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1529, + "length": 6, + "value": "\"cuid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 22, + "value": "\"mobileInvitationType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/MediaTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 394, + "length": 16, + "value": "\"MediaTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/OrientationCollector.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 20, + "value": "\"MedalliaDigitalSDK.OrientationCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetCustomInterceptCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 201, + "length": 31, + "value": "\"MedalliaDigitalSDK.SetCustomInterceptCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/InitOfflineMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.InitOfflineMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TriggerChildGroup.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 17, + "value": "\"MedalliaDigitalSDK.TriggerChildGroup\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadTemplatesOperation.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadTemplatesOperation.swift", + "kind": "StringLiteral", + "offset": 280, + "length": 22, + "value": "\"MedalliaDigitalSDK.LoadTemplatesOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/TemplateTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 19, + "value": "\"TemplateTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/PowerTypeCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 18, + "value": "\"MedalliaDigitalSDK.PowerTypeCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormWindow.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 351, + "length": 20, + "value": "\"MedalliaDigitalSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 53, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 466, + "length": 19, + "value": "\"_local_notification\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 527, + "length": 43, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 566, + "length": 3, + "value": "\"_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 619, + "length": 51, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 11, + "value": "\"_expiration\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 15, + "value": "\"_fire_timestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 816, + "length": 54, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 855, + "length": 14, + "value": "\"_engagement_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "Array", + "offset": 1056, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/PreloadMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.PreloadMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/FormDataTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 19, + "value": "\"FormDataTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetEvaluatorContract.swift", + "kind": "BooleanLiteral", + "offset": 2439, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "IntegerLiteral", + "offset": 332, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 18, + "value": "\"MedalliaDigitalSDK.LifeCycleCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/LoggerEvent.swift", + "kind": "StringLiteral", + "offset": 183, + "length": 11, + "value": "\"MedalliaDigitalSDK.LoggerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LastSubmitTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 28, + "value": "\"MedalliaDigitalSDK.LastSubmitTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RefreshSessionEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.RefreshSessionEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LastDeclineTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 29, + "value": "\"MedalliaDigitalSDK.LastDeclineTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetInvitationListenerEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.SetInvitationListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/SubmitFeedbackEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.SubmitFeedbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 157, + "length": 13, + "value": "\"DeviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 14, + "value": "\"DeviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 226, + "length": 18, + "value": "\"DeviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 18, + "value": "\"DeviceUsedMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 308, + "length": 18, + "value": "\"DeviceFreeMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 21, + "value": "\"DeviceUsedDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 21, + "value": "\"DeviceFreeDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 8, + "value": "\"OsName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 11, + "value": "\"OsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 16, + "value": "\"NetworkCarrier\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 534, + "length": 10, + "value": "\"Language\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 565, + "length": 10, + "value": "\"Timezone\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 13, + "value": "\"NetworkType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 4, + "value": "\"IP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 656, + "length": 14, + "value": "\"NetworkSpeed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 11, + "value": "\"PowerType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 19, + "value": "\"BatteryPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 13, + "value": "\"Orientation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 13, + "value": "\"AdvertiseId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"DeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 876, + "length": 8, + "value": "\"UserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 905, + "length": 10, + "value": "\"UserName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 11, + "value": "\"UserEmail\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 977, + "length": 18, + "value": "\"CustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 21, + "value": "\"SdkAnalyticsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1065, + "length": 9, + "value": "\"AppName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 7, + "value": "\"AppId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 12, + "value": "\"AppVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 11, + "value": "\"Lifecycle\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 12, + "value": "\"SdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1242, + "length": 29, + "value": "\"SessionCalculatedPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 15, + "value": "\"SessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 11, + "value": "\"SessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 12, + "value": "\"PropertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 22, + "value": "\"LastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1460, + "length": 32, + "value": "\"AppRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 31, + "value": "\"AppRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 31, + "value": "\"AppRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 21, + "value": "\"LastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 10, + "value": "\"Location\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1721, + "length": 15, + "value": "\"TimeInSession\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1765, + "length": 18, + "value": "\"TimeInForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1812, + "length": 18, + "value": "\"TimeInBackground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1862, + "length": 21, + "value": "\"InvitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1911, + "length": 17, + "value": "\"PromptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1957, + "length": 18, + "value": "\"InterceptEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 19, + "value": "\"InterceptDisabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2041, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 11, + "value": "\"VoiceOver\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 14, + "value": "\"SdkFramework\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2178, + "length": 27, + "value": "\"LocalNotificationsEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2241, + "length": 25, + "value": "\"TimeInCurrentForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 14, + "value": "\"IsOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2333, + "length": 17, + "value": "\"IsOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2385, + "length": 24, + "value": "\"IsSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2461, + "length": 32, + "value": "\"SessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 157, + "length": 13, + "value": "\"DeviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 14, + "value": "\"DeviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 226, + "length": 18, + "value": "\"DeviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 18, + "value": "\"DeviceUsedMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 308, + "length": 18, + "value": "\"DeviceFreeMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 21, + "value": "\"DeviceUsedDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 21, + "value": "\"DeviceFreeDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 8, + "value": "\"OsName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 11, + "value": "\"OsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 16, + "value": "\"NetworkCarrier\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 534, + "length": 10, + "value": "\"Language\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 565, + "length": 10, + "value": "\"Timezone\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 13, + "value": "\"NetworkType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 4, + "value": "\"IP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 656, + "length": 14, + "value": "\"NetworkSpeed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 11, + "value": "\"PowerType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 19, + "value": "\"BatteryPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 13, + "value": "\"Orientation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 13, + "value": "\"AdvertiseId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"DeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 876, + "length": 8, + "value": "\"UserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 905, + "length": 10, + "value": "\"UserName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 11, + "value": "\"UserEmail\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 977, + "length": 18, + "value": "\"CustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 21, + "value": "\"SdkAnalyticsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1065, + "length": 9, + "value": "\"AppName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 7, + "value": "\"AppId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 12, + "value": "\"AppVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 11, + "value": "\"Lifecycle\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 12, + "value": "\"SdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1242, + "length": 29, + "value": "\"SessionCalculatedPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 15, + "value": "\"SessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 11, + "value": "\"SessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 12, + "value": "\"PropertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 22, + "value": "\"LastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1460, + "length": 32, + "value": "\"AppRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 31, + "value": "\"AppRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 31, + "value": "\"AppRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 21, + "value": "\"LastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 10, + "value": "\"Location\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1721, + "length": 15, + "value": "\"TimeInSession\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1765, + "length": 18, + "value": "\"TimeInForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1812, + "length": 18, + "value": "\"TimeInBackground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1862, + "length": 21, + "value": "\"InvitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1911, + "length": 17, + "value": "\"PromptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1957, + "length": 18, + "value": "\"InterceptEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 19, + "value": "\"InterceptDisabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2041, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 11, + "value": "\"VoiceOver\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 14, + "value": "\"SdkFramework\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2178, + "length": 27, + "value": "\"LocalNotificationsEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2241, + "length": 25, + "value": "\"TimeInCurrentForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 14, + "value": "\"IsOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2333, + "length": 17, + "value": "\"IsOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2385, + "length": 24, + "value": "\"IsSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2461, + "length": 32, + "value": "\"SessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/InterceptProducer.swift", + "kind": "BooleanLiteral", + "offset": 1006, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastAcceptedTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 39, + "value": "\"MedalliaDigitalSDK.AppRatingLastAcceptedTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFeedbackDelegateData.swift", + "kind": "StringLiteral", + "offset": 212, + "length": 22, + "value": "\"MedalliaDigitalSDK.MDFeedbackDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/EnableInterceptEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.EnableInterceptEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/InitEvent.swift", + "kind": "StringLiteral", + "offset": 179, + "length": 9, + "value": "\"MedalliaDigitalSDK.InitEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormSubmittedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormSubmittedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Compression.swift", + "kind": "Array", + "offset": 1000, + "length": 3281, + "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Compression.swift", + "kind": "BooleanLiteral", + "offset": 7275, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 272, + "length": 22, + "value": "\"lastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 382, + "length": 31, + "value": "\"appRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 32, + "value": "\"appRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 31, + "value": "\"appRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 21, + "value": "\"lastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 827, + "length": 18, + "value": "\"refreshSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 22, + "value": "\"refreshSessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1027, + "length": 24, + "value": "\"refreshSessionIfNeeded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 21, + "value": "\"invitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1224, + "length": 17, + "value": "\"promptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1310, + "length": 12, + "value": "\"propertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 6, + "value": "\"csat\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 5, + "value": "\"nps\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1529, + "length": 14, + "value": "\"isOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1617, + "length": 17, + "value": "\"isOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1715, + "length": 24, + "value": "\"isSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1828, + "length": 32, + "value": "\"sessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 365, + "length": 20, + "value": "\"MedalliaSDKVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 422, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 709, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "IntegerLiteral", + "offset": 801, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1075, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1147, + "length": 28, + "value": "\"CFBundleShortVersionString\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FeedbackRetryMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 27, + "value": "\"MedalliaDigitalSDK.FeedbackRetryMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 559, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 604, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 662, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormClosedEvent.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 15, + "value": "\"MedalliaDigitalSDK.FormClosedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptSkippedEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 27, + "value": "\"MedalliaDigitalSDK.CustomInterceptSkippedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1944, + "length": 5, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1959, + "length": 5, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 4, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 5, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1944, + "length": 5, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1959, + "length": 5, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 4, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 5, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/SessionNumberCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 22, + "value": "\"MedalliaDigitalSDK.SessionNumberCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "BooleanLiteral", + "offset": 968, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "BooleanLiteral", + "offset": 1080, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1135, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1187, + "length": 2, + "value": "40" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomParameterEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.SetCustomParameterEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/DeviceVendorCollector.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 957, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 957, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 313, + "length": 10, + "value": "\"Database\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 370, + "length": 15, + "value": "\"attributeName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 16, + "value": "\"attributeValue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 10, + "value": "\"Database\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 27, + "value": "\"NSSecureUnarchiveFromData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "BooleanLiteral", + "offset": 657, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "BooleanLiteral", + "offset": 17012, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 2134, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2600, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2648, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "StringLiteral", + "offset": 2684, + "length": 4, + "value": "\"-1\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2727, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2772, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2815, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2856, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2938, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 2977, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3008, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3051, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3103, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3489, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 3528, + "length": 4, + "value": "0.97" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 3643, + "length": 3, + "value": "2.5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDCustomInterceptPayload.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 24, + "value": "\"MedalliaDigitalSDK.MDCustomInterceptPayload\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 27, + "value": "\"kplConfig.submitUrlPrefix\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "StringLiteral", + "offset": 600, + "length": 27, + "value": "\"kplConfig.submitUrlSuffix\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "Dictionary", + "offset": 1895, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 2703, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 19967, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 20034, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "IntegerLiteral", + "offset": 41685, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "StringLiteral", + "offset": 490, + "length": 28, + "value": "\"com.medallia.formDataQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "FloatLiteral", + "offset": 554, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "BooleanLiteral", + "offset": 615, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "BooleanLiteral", + "offset": 678, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Error/InternalErrorEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.InternalErrorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/OCQ/QuarantineValidationResponse.swift", + "kind": "BooleanLiteral", + "offset": 408, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/InterceptMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InterceptMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/ShowFormEvent.swift", + "kind": "StringLiteral", + "offset": 183, + "length": 13, + "value": "\"MedalliaDigitalSDK.ShowFormEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/NpsCollector.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 12, + "value": "\"MedalliaDigitalSDK.NpsCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/CustomInterceptTriggerCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 205, + "length": 35, + "value": "\"MedalliaDigitalSDK.CustomInterceptTriggerCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDCustomInterceptDelegateData.swift", + "kind": "StringLiteral", + "offset": 219, + "length": 29, + "value": "\"MedalliaDigitalSDK.MDCustomInterceptDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsLoader.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsLoader.swift", + "kind": "StringLiteral", + "offset": 737, + "length": 36, + "value": "\"com.medallia.delegateDispatchQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/ResourceContract.swift", + "kind": "BooleanLiteral", + "offset": 441, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/CloseEngagementEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.CloseEngagementEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/FileManager+ZIP.swift", + "kind": "BooleanLiteral", + "offset": 955, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1727, + "length": 11, + "value": "\"FormId : \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1750, + "length": 4, + "value": "\", \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"FormStatus : \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Session/Session.swift", + "kind": "IntegerLiteral", + "offset": 268, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/ResourceContractTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 27, + "value": "\"ResourceContractTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDInterceptDelegateData.swift", + "kind": "StringLiteral", + "offset": 213, + "length": 23, + "value": "\"MedalliaDigitalSDK.MDInterceptDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormDismissedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormDismissedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/SessionIdCollector.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 18, + "value": "\"MedalliaDigitalSDK.SessionIdCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadResourcesOperation.swift", + "kind": "IntegerLiteral", + "offset": 601, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadResourcesOperation.swift", + "kind": "StringLiteral", + "offset": 217, + "length": 22, + "value": "\"MedalliaDigitalSDK.LoadResourcesOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/QuarantineValidationRuleTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 472, + "length": 35, + "value": "\"QuarantineValidationRuleTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/UpdateCustomLocaleEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 23, + "value": "\"MedalliaDigitalSDK.UpdateCustomLocaleEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadSingleTemplateOperation.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 27, + "value": "\"MedalliaDigitalSDK.LoadSingleTemplateOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 500, + "length": 14, + "value": "\"CustomParams\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 10, + "value": "\"logLevel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 597, + "length": 24, + "value": "\"setInteceptListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 20, + "value": "\"setFormListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 721, + "length": 24, + "value": "\"setFeedbackListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 794, + "length": 31, + "value": "\"setCustomInterceptListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 861, + "length": 18, + "value": "\"revertStopSdkKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 918, + "length": 21, + "value": "\"sdkFramewrokTypeKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 18, + "value": "\"deleteStorageKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 20, + "value": "\"RestoreFromKillSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1089, + "length": 20, + "value": "\"enableInterceptKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1148, + "length": 21, + "value": "\"disableInterceptKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1210, + "length": 23, + "value": "\"updateCustomLocaleKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 23, + "value": "\"handleNotificationKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "BooleanLiteral", + "offset": 231, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "BooleanLiteral", + "offset": 259, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 13, + "value": "\"isExecuting\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 12, + "value": "\"isFinished\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 13, + "value": "\"isExecuting\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 12, + "value": "\"isFinished\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "Dictionary", + "offset": 616, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "StringLiteral", + "offset": 1795, + "length": 5, + "value": "\"md_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 9, + "value": "\"md_ios_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 2115, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 56920, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 56965, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "IntegerLiteral", + "offset": 57016, + "length": 3, + "value": "512" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "IntegerLiteral", + "offset": 57066, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 215, + "length": 11, + "value": "\".DS_Store\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 11, + "value": "\"templates\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 306, + "length": 11, + "value": "\"resources\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 356, + "length": 18, + "value": "\"targetRuleEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 421, + "length": 17, + "value": "\"MedalliaDigital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 491, + "length": 18, + "value": "\".MedalliaDigital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 10, + "value": "\"property\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 600, + "length": 15, + "value": "\"configuration\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 652, + "length": 7, + "value": "\"media\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 7, + "value": "\".html\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 248, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 248, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormLoadedEvent.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 15, + "value": "\"MedalliaDigitalSDK.FormLoadedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/ThankYouPromptDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.ThankYouPromptDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetFormListenerEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.SetFormListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInForegroundCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 25, + "value": "\"MedalliaDigitalSDK.TimeInForegroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 462, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 462, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFormHeaderView.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFormHeaderView.swift", + "kind": "StringLiteral", + "offset": 263, + "length": 18, + "value": "\"MedalliaDigitalSDK.MDUIFormHeaderView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInBackgroundCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 25, + "value": "\"MedalliaDigitalSDK.TimeInBackgroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/InterfaceOrientationManager.swift", + "kind": "BooleanLiteral", + "offset": 261, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/InterfaceOrientationManager.swift", + "kind": "BooleanLiteral", + "offset": 319, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/ResourcesSizeEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.ResourcesSizeEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/FormLoadSpinnerEvent.swift", + "kind": "StringLiteral", + "offset": 136, + "length": 20, + "value": "\"MedalliaDigitalSDK.FormLoadSpinnerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 311, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 311, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/NativeTargetEvaluatorEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 26, + "value": "\"MedalliaDigitalSDK.NativeTargetEvaluatorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/IsOCQRulesValidCollector.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.IsOCQRulesValidCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/ConfigurationClient.swift", + "kind": "StringLiteral", + "offset": 2654, + "length": 13, + "value": "\"tre-version\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/ConfigurationClient.swift", + "kind": "StringLiteral", + "offset": 2654, + "length": 13, + "value": "\"tre-version\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 225, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 273, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 315, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 354, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 394, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 439, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 483, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 535, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 582, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 617, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "FloatLiteral", + "offset": 833, + "length": 3, + "value": "5.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1152, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 1317, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 1362, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 131, + "length": 14, + "value": "\"MedalliaDigitalSDK.MDUIBannerView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 8, + "value": "\"BOTTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 8, + "value": "\"BOTTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/NSLayoutConstraint+Common.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/NSLayoutConstraint+Common.swift", + "kind": "FloatLiteral", + "offset": 455, + "length": 3, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"BANNER\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"ALERT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 284, + "length": 19, + "value": "\"PUSH_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 8, + "value": "\"CUSTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 20, + "value": "\"LOCAL_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"BANNER\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"ALERT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 284, + "length": 19, + "value": "\"PUSH_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 8, + "value": "\"CUSTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 20, + "value": "\"LOCAL_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 10, + "value": "\"MedalliaDigitalSDK.InviteData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 33, + "value": "\"Feedback Submitted Successfully\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 274, + "length": 7, + "value": "\"Close\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 323, + "length": 18, + "value": "\"Provide Feedback\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 375, + "length": 10, + "value": "\"Rate App\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 420, + "length": 11, + "value": "\"No Thanks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 13, + "value": "\"Maybe Later\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 568, + "length": 9, + "value": "\"#cccccc\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 614, + "length": 8, + "value": "\"System\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 747, + "length": 4, + "value": "5000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 906, + "length": 4, + "value": "50.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 967, + "length": 4, + "value": "66.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 1027, + "length": 3, + "value": "0.1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1076, + "length": 2, + "value": "17" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1122, + "length": 2, + "value": "15" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1169, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 3, + "value": "126" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 385, + "length": 2, + "value": "60" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "FloatLiteral", + "offset": 476, + "length": 3, + "value": "4.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "BooleanLiteral", + "offset": 516, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "StringLiteral", + "offset": 182, + "length": 17, + "value": "\"MedalliaDigitalSDK.MDUIPoweredByView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 277, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 487, + "length": 5, + "value": "0o644" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 535, + "length": 5, + "value": "0o755" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 630, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 661, + "length": 2, + "value": "22" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 5, + "value": "66000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 741, + "length": 10, + "value": "0x06054b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 789, + "length": 10, + "value": "0x04034b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 836, + "length": 10, + "value": "0x08074b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 10, + "value": "0x02014b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4560, + "length": 2, + "value": "22" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/SynchronizedArray.swift", + "kind": "StringLiteral", + "offset": 331, + "length": 32, + "value": "\"com.medallia.synchronizedArray\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Locale/LocaleService.swift", + "kind": "BooleanLiteral", + "offset": 339, + "length": 5, + "value": "false" + } + ] +} diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftinterface b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface similarity index 93% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftinterface rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface index 6941e6f..1b7daf0 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftinterface +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) -// swift-module-flags: -target i386-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target arm64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVKit import AdSupport import Compression @@ -20,8 +21,10 @@ import SystemConfiguration import UIKit.UIApplication import UIKit.UIDevice import UIKit +import UserNotifications import WebKit import _Concurrency +import _StringProcessing import zlib @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers public class MedalliaDigital : ObjectiveC.NSObject { @objc public static func sdkInit(token: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) @@ -44,11 +47,20 @@ import zlib @objc public static func setCustomAppearance(_ appearanceMode: MedalliaDigitalSDK.MDAppearanceMode) @objc public static func setDebugForm(_ debug: Swift.Bool) @objc public static func closeEngagement(success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setUserId(_ userId: Swift.String?) @objc deinit } @objc public protocol MDFeedbackDelegate { @objc optional func feedbackDidSubmit(feedbackDelegateData: MedalliaDigitalSDK.MDFeedbackDelegateData) } +@objc extension UserNotifications.UNNotificationContent { + @objc dynamic public var isMedalliaDigitalSDKNotificationContent: Swift.Bool { + @objc get + } + @objc dynamic public var medalliaDigitalSDKEngagementId: Swift.String? { + @objc get + } +} extension UIKit.UIImage { public class func gif(data: Foundation.Data) -> UIKit.UIImage? public class func gif(url: Swift.String) -> UIKit.UIImage? @@ -111,6 +123,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { } @objc @_hasMissingDesignatedInitializers @objcMembers public class MDFeedbackDelegateData : ObjectiveC.NSObject { @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String @objc public var feedbackClientCorrelationId: Swift.String @objc public var payload: [Swift.String : Any] @objc deinit @@ -190,6 +203,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { case native = 0 case reactNative = 1 case cordova = 2 + case flutter = 3 public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..91e3b7b Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface similarity index 94% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface index 3affbac..1b7daf0 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target arm64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVKit import AdSupport import Compression @@ -20,8 +21,10 @@ import SystemConfiguration import UIKit.UIApplication import UIKit.UIDevice import UIKit +import UserNotifications import WebKit import _Concurrency +import _StringProcessing import zlib @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers public class MedalliaDigital : ObjectiveC.NSObject { @objc public static func sdkInit(token: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) @@ -44,11 +47,20 @@ import zlib @objc public static func setCustomAppearance(_ appearanceMode: MedalliaDigitalSDK.MDAppearanceMode) @objc public static func setDebugForm(_ debug: Swift.Bool) @objc public static func closeEngagement(success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setUserId(_ userId: Swift.String?) @objc deinit } @objc public protocol MDFeedbackDelegate { @objc optional func feedbackDidSubmit(feedbackDelegateData: MedalliaDigitalSDK.MDFeedbackDelegateData) } +@objc extension UserNotifications.UNNotificationContent { + @objc dynamic public var isMedalliaDigitalSDKNotificationContent: Swift.Bool { + @objc get + } + @objc dynamic public var medalliaDigitalSDKEngagementId: Swift.String? { + @objc get + } +} extension UIKit.UIImage { public class func gif(data: Foundation.Data) -> UIKit.UIImage? public class func gif(url: Swift.String) -> UIKit.UIImage? @@ -111,6 +123,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { } @objc @_hasMissingDesignatedInitializers @objcMembers public class MDFeedbackDelegateData : ObjectiveC.NSObject { @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String @objc public var feedbackClientCorrelationId: Swift.String @objc public var payload: [Swift.String : Any] @objc deinit @@ -190,6 +203,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { case native = 0 case reactNative = 1 case cordova = 2 + case flutter = 3 public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json new file mode 100644 index 0000000..68fa1af --- /dev/null +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json @@ -0,0 +1,20063 @@ +{ + "ABIRoot": { + "kind": "Root", + "name": "TopLevel", + "printedName": "TopLevel", + "children": [ + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MedalliaDigital", + "printedName": "MedalliaDigital", + "children": [ + { + "kind": "Function", + "name": "sdkInit", + "printedName": "sdkInit(token:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)sdkInitWithToken:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C7sdkInit5token7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomParameter", + "printedName": "setCustomParameter(name:value:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomParameterWithName:value:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18setCustomParameter4name5valueySS_yptFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomParameters", + "printedName": "setCustomParameters(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomParameters:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setCustomParametersyySDySSypGFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "showForm", + "printedName": "showForm(_:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)showForm:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C8showForm_7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "handleNotification", + "printedName": "handleNotification(_:success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)handleNotification:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18handleNotification_7success7failureySS_yycyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setFormDelegate", + "printedName": "setFormDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFormDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormDelegate", + "printedName": "MedalliaDigitalSDK.MDFormDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setFormDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15setFormDelegateyyAA06MDFormF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setInterceptDelegate", + "printedName": "setInterceptDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptDelegate", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setInterceptDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C20setInterceptDelegateyyAA011MDInterceptF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setFeedbackDelegate", + "printedName": "setFeedbackDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegate?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegate", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setFeedbackDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setFeedbackDelegateyyAA010MDFeedbackF0_pSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomInterceptDelegate", + "printedName": "setCustomInterceptDelegate(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegate", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegate", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomInterceptDelegate:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C26setCustomInterceptDelegateyyAA08MDCustomfG0_pFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "enableIntercept", + "printedName": "enableIntercept()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)enableIntercept", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15enableInterceptyyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "disableIntercept", + "printedName": "disableIntercept()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)disableIntercept", + "mangledName": "$s18MedalliaDigitalSDK0aB0C16disableInterceptyyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setLogLevel", + "printedName": "setLogLevel(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setLogLevel:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C11setLogLevelyyAA05MDLogF0OFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "stopSDK", + "printedName": "stopSDK(clearData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "hasDefaultArg": true, + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)stopSDKWithClearData:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C04stopC09clearDataySb_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "revertStopSDK", + "printedName": "revertStopSDK()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)revertStopSDK", + "mangledName": "$s18MedalliaDigitalSDK0aB0C010revertStopC0yyFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setSdkFramework", + "printedName": "setSdkFramework(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setSdkFramework:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15setSdkFrameworkyyAA18MDSDKFrameworkTypeOFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "updateCustomLocale", + "printedName": "updateCustomLocale(_:success:failure:)", + "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" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(Swift.String?) -> ()", + "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" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)updateCustomLocale:success:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C18updateCustomLocale_7success7failureySSSg_yAGcyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "customInterceptTrigger", + "printedName": "customInterceptTrigger(engagementId:actionType:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)customInterceptTriggerWithEngagementId:actionType:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C22customInterceptTrigger12engagementId10actionType7failureySS_AA017MDInterceptActionJ0OyAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setCustomAppearance", + "printedName": "setCustomAppearance(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setCustomAppearance:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C19setCustomAppearanceyyAA16MDAppearanceModeOFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setDebugForm", + "printedName": "setDebugForm(_:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setDebugForm:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C12setDebugFormyySbFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "closeEngagement", + "printedName": "closeEngagement(success:failure:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "() -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ] + }, + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDExternalError) -> ()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ] + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)closeEngagementWithSuccess:failure:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C15closeEngagement7success7failureyyyc_yAA15MDExternalErrorCctFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "setUserId", + "printedName": "setUserId(_:)", + "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": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital(cm)setUserId:", + "mangledName": "$s18MedalliaDigitalSDK0aB0C9setUserIdyySSSgFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["Final", "AccessControl", "RawDocComment", "ObjC"], + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MedalliaDigital", + "mangledName": "$s18MedalliaDigitalSDK0aB0C", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "RawDocComment", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Dispatch", + "printedName": "Dispatch", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFeedbackDelegate", + "printedName": "MDFeedbackDelegate", + "children": [ + { + "kind": "Function", + "name": "feedbackDidSubmit", + "printedName": "feedbackDidSubmit(feedbackDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegateData", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate(im)feedbackDidSubmitWithFeedbackDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK18MDFeedbackDelegateP17feedbackDidSubmit0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFeedbackDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "feedbackDidSubmitWithFeedbackDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFeedbackDelegate", + "mangledName": "$s18MedalliaDigitalSDK18MDFeedbackDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "zlib", + "printedName": "zlib", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormDelegateData", + "printedName": "MDFormDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formTriggerType", + "printedName": "formTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formTriggerType", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formTriggerType", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormTriggerType:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0OvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC15formTriggerTypeAA0dhI0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "url", + "printedName": "url", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)url", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)url", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setUrl:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC3urlSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "isBlocked", + "printedName": "isBlocked", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)isBlocked", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)isBlocked", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setIsBlocked:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC9isBlockedSbvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formLocaleSet", + "printedName": "formLocaleSet", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formLocaleSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formLocaleSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormLocaleSet:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC13formLocaleSetSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formLocaleDisplay", + "printedName": "formLocaleDisplay", + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formLocaleDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formLocaleDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormLocaleDisplay:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC17formLocaleDisplaySSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formHeaderAppearanceSet", + "printedName": "formHeaderAppearanceSet", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formHeaderAppearanceSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formHeaderAppearanceSet", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormHeaderAppearanceSet:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC23formHeaderAppearanceSetAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "formHeaderAppearanceDisplay", + "printedName": "formHeaderAppearanceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(py)formHeaderAppearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)formHeaderAppearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)setFormHeaderAppearanceDisplay:", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC27formHeaderAppearanceDisplayAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData", + "mangledName": "$s18MedalliaDigitalSDK18MDFormDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreFoundation", + "printedName": "CoreFoundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Photos", + "printedName": "Photos", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "MobileCoreServices", + "printedName": "MobileCoreServices", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDExternalError", + "printedName": "MDExternalError", + "children": [ + { + "kind": "Var", + "name": "statusCode", + "printedName": "statusCode", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(py)statusCode", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC", "RawDocComment"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)statusCode", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)setStatusCode:", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivM", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC10statusCodeSivM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "message", + "printedName": "message", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(py)message", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC", "RawDocComment"], + "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@MedalliaDigitalSDK@objc(cs)MDExternalError(im)message", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)setMessage:", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK15MDExternalErrorC7messageSSvM", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC7messageSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDExternalError", + "printedName": "MedalliaDigitalSDK.MDExternalError", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError(im)init", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDExternalError", + "mangledName": "$s18MedalliaDigitalSDK15MDExternalErrorC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "kind": "Conformance", + "name": "Error", + "printedName": "Error", + "usr": "s:s5ErrorP", + "mangledName": "$ss5ErrorP" + }, + { + "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": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIDevice", + "printedName": "UIKit.UIDevice", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "JavaScriptCore", + "printedName": "JavaScriptCore", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormDelegate", + "printedName": "MDFormDelegate", + "children": [ + { + "kind": "Function", + "name": "formDidSubmit", + "printedName": "formDidSubmit(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidSubmitWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP13formDidSubmit0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidSubmitWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidDismiss", + "printedName": "formDidDismiss(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidDismissWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP14formDidDismiss0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidDismissWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidClose", + "printedName": "formDidClose(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidCloseWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP12formDidClose0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidCloseWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidDisplay", + "printedName": "formDidDisplay(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidDisplayWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP14formDidDisplay0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidDisplayWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidBlockExternalUrl", + "printedName": "formDidBlockExternalUrl(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidBlockExternalUrlWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP23formDidBlockExternalUrl0fE4DatayAA0deK0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidBlockExternalUrlWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidLinkSelect", + "printedName": "formDidLinkSelect(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidLinkSelectWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP17formDidLinkSelect0fE4DatayAA0deJ0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidLinkSelectWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidThankYouPrompt", + "printedName": "formDidThankYouPrompt(formDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDFormDelegateData", + "printedName": "MedalliaDigitalSDK.MDFormDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFormDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate(im)formDidThankYouPromptWithFormDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP21formDidThankYouPrompt0fE4DatayAA0deK0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDFormDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "formDidThankYouPromptWithFormDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDFormDelegate", + "mangledName": "$s18MedalliaDigitalSDK14MDFormDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptActionType", + "printedName": "MDInterceptActionType", + "children": [ + { + "kind": "Var", + "name": "accepted", + "printedName": "accepted", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeAccepted", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8acceptedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "declined", + "printedName": "declined", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeDeclined", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8declinedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "deferred", + "printedName": "deferred", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeDeferred", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8deferredyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "skipped", + "printedName": "skipped", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDInterceptActionType.Type) -> MedalliaDigitalSDK.MDInterceptActionType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType@MDInterceptActionTypeSkipped", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO7skippedyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptActionType", + "printedName": "MedalliaDigitalSDK.MDInterceptActionType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDInterceptActionType", + "mangledName": "$s18MedalliaDigitalSDK21MDInterceptActionTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "PreviewAppBridgeDelegate", + "printedName": "PreviewAppBridgeDelegate", + "children": [ + { + "kind": "Function", + "name": "formDidClose", + "printedName": "formDidClose()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP12formDidCloseyyF", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP12formDidCloseyyF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.PreviewAppBridgeDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "formDidSubmit", + "printedName": "formDidSubmit()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP13formDidSubmityyF", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP13formDidSubmityyF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.PreviewAppBridgeDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "s:18MedalliaDigitalSDK24PreviewAppBridgeDelegateP", + "mangledName": "$s18MedalliaDigitalSDK24PreviewAppBridgeDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptDelegate", + "printedName": "MDInterceptDelegate", + "children": [ + { + "kind": "Function", + "name": "interceptDidDisplay", + "printedName": "interceptDidDisplay(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDisplayWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP19interceptDidDisplay0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDisplayWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidAccept", + "printedName": "interceptDidAccept(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidAcceptWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP18interceptDidAccept0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidAcceptWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidDecline", + "printedName": "interceptDidDecline(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDeclineWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP19interceptDidDecline0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDeclineWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidDefer", + "printedName": "interceptDidDefer(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidDeferWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP17interceptDidDefer0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidDeferWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidClose", + "printedName": "interceptDidClose(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidCloseWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP17interceptDidClose0fE4DatayAA0deI0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidCloseWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "interceptDidTriggerSKStoreReviewController", + "printedName": "interceptDidTriggerSKStoreReviewController(interceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate(im)interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP42interceptDidTriggerSKStoreReviewController0fE4DatayAA0deL0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "interceptDidTriggerSKStoreReviewControllerWithInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDInterceptDelegate", + "mangledName": "$s18MedalliaDigitalSDK19MDInterceptDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptDelegate", + "printedName": "MDCustomInterceptDelegate", + "children": [ + { + "kind": "Function", + "name": "targetEvaluationDidSuccess", + "printedName": "targetEvaluationDidSuccess(customInterceptDelegateData:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData" + } + ], + "declKind": "Func", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate(im)targetEvaluationDidSuccessWithCustomInterceptDelegateData:", + "mangledName": "$s18MedalliaDigitalSDK25MDCustomInterceptDelegateP26targetEvaluationDidSuccess06customeF4DatayAA0defL0C_tF", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 where τ_0_0 : MedalliaDigitalSDK.MDCustomInterceptDelegate>", + "sugared_genericSig": "", + "protocolReq": true, + "objc_name": "targetEvaluationDidSuccessWithCustomInterceptDelegateData:", + "declAttributes": ["Optional", "ObjC", "RawDocComment"], + "reqNewWitnessTableEntry": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Protocol", + "usr": "c:@M@MedalliaDigitalSDK@objc(pl)MDCustomInterceptDelegate", + "mangledName": "$s18MedalliaDigitalSDK25MDCustomInterceptDelegateP", + "moduleName": "MedalliaDigitalSDK", + "genericSig": "<τ_0_0 : AnyObject>", + "sugared_genericSig": "", + "declAttributes": ["AccessControl", "ObjC"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UserNotifications", + "printedName": "UserNotifications", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "AdSupport", + "printedName": "AdSupport", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "CoreTelephony", + "printedName": "CoreTelephony", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFeedbackDelegateData", + "printedName": "MDFeedbackDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "feedbackClientCorrelationId", + "printedName": "feedbackClientCorrelationId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)feedbackClientCorrelationId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)feedbackClientCorrelationId", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setFeedbackClientCorrelationId:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC27feedbackClientCorrelationIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(py)payload", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)payload", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "Dictionary", + "printedName": "[Swift.String : Any]", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + }, + { + "kind": "TypeNominal", + "name": "ProtocolComposition", + "printedName": "Any" + } + ], + "usr": "s:SD" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)setPayload:", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvM", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC7payloadSDySSypGvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFeedbackDelegateData", + "printedName": "MedalliaDigitalSDK.MDFeedbackDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDFeedbackDelegateData", + "mangledName": "$s18MedalliaDigitalSDK22MDFeedbackDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit.UIApplication", + "printedName": "UIKit.UIApplication", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Compression", + "printedName": "Compression", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Darwin", + "printedName": "Darwin", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "SystemConfiguration", + "printedName": "SystemConfiguration", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDLogLevel", + "printedName": "MDLogLevel", + "children": [ + { + "kind": "Var", + "name": "off", + "printedName": "off", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelOff", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO3offyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "fatal", + "printedName": "fatal", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelFatal", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5fatalyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "error", + "printedName": "error", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelError", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5erroryA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "warn", + "printedName": "warn", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelWarn", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO4warnyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Var", + "name": "info", + "printedName": "info", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelInfo", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO4infoyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 4 + }, + { + "kind": "Var", + "name": "debug", + "printedName": "debug", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDLogLevel.Type) -> MedalliaDigitalSDK.MDLogLevel", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDLogLevel.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel@MDLogLevelDebug", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO5debugyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 5 + }, + { + "kind": "Function", + "name": "stringRepresentation", + "printedName": "stringRepresentation()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO20stringRepresentationSSyF", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO20stringRepresentationSSyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDLogLevel?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "allCases", + "printedName": "allCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvpZ", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvpZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvgZ", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO8allCasesSayACGvgZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel", + "mangledName": "$s18MedalliaDigitalSDK10MDLogLevelO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + }, + { + "kind": "Conformance", + "name": "CaseIterable", + "printedName": "CaseIterable", + "children": [ + { + "kind": "TypeWitness", + "name": "AllCases", + "printedName": "AllCases", + "children": [ + { + "kind": "TypeNominal", + "name": "Array", + "printedName": "[MedalliaDigitalSDK.MDLogLevel]", + "children": [ + { + "kind": "TypeNominal", + "name": "MDLogLevel", + "printedName": "MedalliaDigitalSDK.MDLogLevel", + "usr": "c:@M@MedalliaDigitalSDK@E@MDLogLevel" + } + ], + "usr": "s:Sa" + } + ] + } + ], + "usr": "s:s12CaseIterableP", + "mangledName": "$ss12CaseIterableP" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDFormTriggerType", + "printedName": "MDFormTriggerType", + "children": [ + { + "kind": "Var", + "name": "code", + "printedName": "code", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDFormTriggerType.Type) -> MedalliaDigitalSDK.MDFormTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType@MDFormTriggerTypeCode", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO4codeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment", "ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "invite", + "printedName": "invite", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDFormTriggerType.Type) -> MedalliaDigitalSDK.MDFormTriggerType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType@MDFormTriggerTypeInvite", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO6inviteyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment", "ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDFormTriggerType", + "printedName": "MedalliaDigitalSDK.MDFormTriggerType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDFormTriggerType", + "mangledName": "$s18MedalliaDigitalSDK17MDFormTriggerTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "AVKit", + "printedName": "AVKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptPayload", + "printedName": "MDCustomInterceptPayload", + "children": [ + { + "kind": "Var", + "name": "titleText", + "printedName": "titleText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)titleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)titleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setTitleText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9titleTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "subtitleText", + "printedName": "subtitleText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)subtitleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)subtitleText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setSubtitleText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC12subtitleTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "provideFeedbackText", + "printedName": "provideFeedbackText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)provideFeedbackText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)provideFeedbackText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setProvideFeedbackText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC19provideFeedbackTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "declineText", + "printedName": "declineText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)declineText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)declineText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setDeclineText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC11declineTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "deferText", + "printedName": "deferText", + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(py)deferText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasInitialValue", "HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)deferText", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)setDeferText:", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvM", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC9deferTextSSSgvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload(im)init", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload", + "mangledName": "$s18MedalliaDigitalSDK24MDCustomInterceptPayloadC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "StoreKit", + "printedName": "StoreKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDCustomInterceptDelegateData", + "printedName": "MDCustomInterceptDelegateData", + "children": [ + { + "kind": "Var", + "name": "formPreloadTimestamp", + "printedName": "formPreloadTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)formPreloadTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)formPreloadTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setFormPreloadTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC20formPreloadTimestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "targetingEvaluationTimestamp", + "printedName": "targetingEvaluationTimestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)targetingEvaluationTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)targetingEvaluationTimestamp", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setTargetingEvaluationTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC28targetingEvaluationTimestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementType", + "printedName": "engagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)engagementType", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)engagementType", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setEngagementType:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0OvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC14engagementTypeAA012MDEngagementI0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "payload", + "printedName": "payload", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(py)payload", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)payload", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDCustomInterceptPayload", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptPayload", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptPayload" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)setPayload:", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvM", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC7payloadAA0dE7PayloadCvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDCustomInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDCustomInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDCustomInterceptDelegateData", + "mangledName": "$s18MedalliaDigitalSDK29MDCustomInterceptDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDInterceptDelegateData", + "printedName": "MDInterceptDelegateData", + "children": [ + { + "kind": "Var", + "name": "timestamp", + "printedName": "timestamp", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)timestamp", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Double", + "printedName": "Swift.Double", + "usr": "s:Sd" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)timestamp", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["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@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setTimestamp:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC9timestampSdvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementId", + "printedName": "engagementId", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)engagementId", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "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@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)engagementId", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setEngagementId:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC12engagementIdSSvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "engagementType", + "printedName": "engagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)engagementType", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)engagementType", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setEngagementType:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0Ovs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0OvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC14engagementTypeAA012MDEngagementH0OvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appearanceSet", + "printedName": "appearanceSet", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)appearanceSet", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)appearanceSet", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setAppearanceSet:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC13appearanceSetAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Var", + "name": "appearanceDisplay", + "printedName": "appearanceDisplay", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Var", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(py)appearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["HasStorage", "AccessControl", "ObjC"], + "hasStorage": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)appearanceDisplay", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "get" + }, + { + "kind": "Accessor", + "name": "Set", + "printedName": "Set()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + }, + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "declKind": "Accessor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)setAppearanceDisplay:", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvs", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "declAttributes": ["ObjC"], + "accessorKind": "set" + }, + { + "kind": "Accessor", + "name": "Modify", + "printedName": "Modify()", + "children": [ + { + "kind": "TypeNominal", + "name": "Void", + "printedName": "()" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvM", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC17appearanceDisplayAA16MDAppearanceModeOvM", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "_modify" + } + ] + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init()", + "children": [ + { + "kind": "TypeNominal", + "name": "MDInterceptDelegateData", + "printedName": "MedalliaDigitalSDK.MDInterceptDelegateData", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData" + } + ], + "declKind": "Constructor", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData(im)init", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataCACycfc", + "moduleName": "MedalliaDigitalSDK", + "overriding": true, + "implicit": true, + "objc_name": "init", + "declAttributes": ["Dynamic", "ObjC", "Override"], + "init_kind": "Designated" + } + ], + "declKind": "Class", + "usr": "c:@M@MedalliaDigitalSDK@objc(cs)MDInterceptDelegateData", + "mangledName": "$s18MedalliaDigitalSDK23MDInterceptDelegateDataC", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjCMembers", "ObjC"], + "superclassUsr": "c:objc(cs)NSObject", + "hasMissingDesignatedInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDAppearanceMode", + "printedName": "MDAppearanceMode", + "children": [ + { + "kind": "Var", + "name": "light", + "printedName": "light", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeLight", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO5lightyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "dark", + "printedName": "dark", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeDark", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO4darkyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "unknown", + "printedName": "unknown", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDAppearanceMode.Type) -> MedalliaDigitalSDK.MDAppearanceMode", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode@MDAppearanceModeUnknown", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO7unknownyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Function", + "name": "toString", + "printedName": "toString()", + "children": [ + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8toStringSSyF", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8toStringSSyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "funcSelfKind": "NonMutating" + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDAppearanceMode", + "printedName": "MedalliaDigitalSDK.MDAppearanceMode", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDAppearanceMode", + "mangledName": "$s18MedalliaDigitalSDK16MDAppearanceModeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDEngagementType", + "printedName": "MDEngagementType", + "children": [ + { + "kind": "Var", + "name": "form", + "printedName": "form", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDEngagementType.Type) -> MedalliaDigitalSDK.MDEngagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDEngagementType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType@MDEngagementTypeForm", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO4formyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "appRating", + "printedName": "appRating", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDEngagementType.Type) -> MedalliaDigitalSDK.MDEngagementType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDEngagementType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType@MDEngagementTypeAppRating", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO9appRatingyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDEngagementType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDEngagementType", + "printedName": "MedalliaDigitalSDK.MDEngagementType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDEngagementType", + "mangledName": "$s18MedalliaDigitalSDK16MDEngagementTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC", "RawDocComment"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "MDSDKFrameworkType", + "printedName": "MDSDKFrameworkType", + "children": [ + { + "kind": "Var", + "name": "native", + "printedName": "native", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeNative", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO6nativeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 0 + }, + { + "kind": "Var", + "name": "reactNative", + "printedName": "reactNative", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeReactNative", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO11reactNativeyA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 1 + }, + { + "kind": "Var", + "name": "cordova", + "printedName": "cordova", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeCordova", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO7cordovayA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 2 + }, + { + "kind": "Var", + "name": "flutter", + "printedName": "flutter", + "children": [ + { + "kind": "TypeFunc", + "name": "Function", + "printedName": "(MedalliaDigitalSDK.MDSDKFrameworkType.Type) -> MedalliaDigitalSDK.MDSDKFrameworkType", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + }, + { + "kind": "TypeNominal", + "name": "Metatype", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType.Type", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ] + } + ] + } + ], + "declKind": "EnumElement", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType@MDSDKFrameworkTypeFlutter", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO7flutteryA2CmF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["ObjC"], + "fixedbinaryorder": 3 + }, + { + "kind": "Constructor", + "name": "init", + "printedName": "init(rawValue:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType?", + "children": [ + { + "kind": "TypeNominal", + "name": "MDSDKFrameworkType", + "printedName": "MedalliaDigitalSDK.MDSDKFrameworkType", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Constructor", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueACSgSi_tcfc", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueACSgSi_tcfc", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "init_kind": "Designated" + }, + { + "kind": "Var", + "name": "rawValue", + "printedName": "rawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Var", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivp", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivp", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "declKind": "Accessor", + "usr": "s:18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivg", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO8rawValueSivg", + "moduleName": "MedalliaDigitalSDK", + "implicit": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Enum", + "usr": "c:@M@MedalliaDigitalSDK@E@MDSDKFrameworkType", + "mangledName": "$s18MedalliaDigitalSDK18MDSDKFrameworkTypeO", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl", "ObjC"], + "enumRawTypeName": "Int", + "conformances": [ + { + "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": "RawRepresentable", + "printedName": "RawRepresentable", + "children": [ + { + "kind": "TypeWitness", + "name": "RawValue", + "printedName": "RawValue", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + } + ], + "usr": "s:SY", + "mangledName": "$sSY" + } + ] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Security", + "printedName": "Security", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "CoreData", + "printedName": "CoreData", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK" + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "WebKit", + "printedName": "WebKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "UIKit", + "printedName": "UIKit", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "Import", + "name": "Foundation", + "printedName": "Foundation", + "declKind": "Import", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["RawDocComment"] + }, + { + "kind": "TypeDecl", + "name": "UNNotificationContent", + "printedName": "UNNotificationContent", + "children": [ + { + "kind": "Var", + "name": "isMedalliaDigitalSDKNotificationContent", + "printedName": "isMedalliaDigitalSDKNotificationContent", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Var", + "usr": "c:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(py)isMedalliaDigitalSDKNotificationContent", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE02iscd15SDKNotificationB0Sbvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessors": [ + { + "kind": "Accessor", + "name": "Get", + "printedName": "Get()", + "children": [ + { + "kind": "TypeNominal", + "name": "Bool", + "printedName": "Swift.Bool", + "usr": "s:Sb" + } + ], + "declKind": "Accessor", + "usr": "c:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(im)isMedalliaDigitalSDKNotificationContent", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE02iscd15SDKNotificationB0Sbvg", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessorKind": "get" + } + ] + }, + { + "kind": "Var", + "name": "medalliaDigitalSDKEngagementId", + "printedName": "medalliaDigitalSDKEngagementId", + "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:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(py)medalliaDigitalSDKEngagementId", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE08medalliaD15SDKEngagementIdSSSgvp", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": 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:@CM@MedalliaDigitalSDK@@objc(cs)UNNotificationContent(im)medalliaDigitalSDKEngagementId", + "mangledName": "$sSo21UNNotificationContentC18MedalliaDigitalSDKE08medalliaD15SDKEngagementIdSSSgvg", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["Dynamic", "ObjC"], + "isFromExtension": true, + "accessorKind": "get" + } + ] + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UNNotificationContent", + "moduleName": "UserNotifications", + "isOpen": true, + "intro_iOS": "10.0", + "objc_name": "UNNotificationContent", + "declAttributes": ["Available", "ObjC", "Dynamic"], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "UIImage", + "printedName": "UIImage", + "children": [ + { + "kind": "Function", + "name": "gif", + "printedName": "gif(data:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif4dataABSg10Foundation4DataV_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif4dataABSg10Foundation4DataV_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gif", + "printedName": "gif(url:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif3urlABSgSS_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif3urlABSgSS_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + }, + { + "kind": "Function", + "name": "gif", + "printedName": "gif(name:)", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "UIKit.UIImage?", + "children": [ + { + "kind": "TypeNominal", + "name": "UIImage", + "printedName": "UIKit.UIImage", + "usr": "c:objc(cs)UIImage" + } + ], + "usr": "s:Sq" + }, + { + "kind": "TypeNominal", + "name": "String", + "printedName": "Swift.String", + "usr": "s:SS" + } + ], + "declKind": "Func", + "usr": "s:So7UIImageC18MedalliaDigitalSDKE3gif4nameABSgSS_tFZ", + "mangledName": "$sSo7UIImageC18MedalliaDigitalSDKE3gif4nameABSgSS_tFZ", + "moduleName": "MedalliaDigitalSDK", + "static": true, + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Class", + "usr": "c:objc(cs)UIImage", + "moduleName": "UIKit", + "isOpen": true, + "intro_iOS": "2.0", + "objc_name": "UIImage", + "declAttributes": ["Available", "ObjC", "SynthesizedProtocol", "NonSendable", "Sendable", "Dynamic"], + "superclassUsr": "c:objc(cs)NSObject", + "isExternal": true, + "inheritsConvenienceInitializers": true, + "superclassNames": ["ObjectiveC.NSObject"], + "conformances": [ + { + "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": "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": "Conformance", + "name": "_ExpressibleByImageLiteral", + "printedName": "_ExpressibleByImageLiteral", + "usr": "s:s26_ExpressibleByImageLiteralP", + "mangledName": "$ss26_ExpressibleByImageLiteralP" + } + ] + }, + { + "kind": "TypeDecl", + "name": "Data", + "printedName": "Data", + "children": [ + { + "kind": "Function", + "name": "gunzipped", + "printedName": "gunzipped()", + "children": [ + { + "kind": "TypeNominal", + "name": "Optional", + "printedName": "Foundation.Data?", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:Sq" + } + ], + "declKind": "Func", + "usr": "s:10Foundation4DataV18MedalliaDigitalSDKE9gunzippedACSgyF", + "mangledName": "$s10Foundation4DataV18MedalliaDigitalSDKE9gunzippedACSgyF", + "moduleName": "MedalliaDigitalSDK", + "declAttributes": ["AccessControl"], + "isFromExtension": true, + "funcSelfKind": "NonMutating" + } + ], + "declKind": "Struct", + "usr": "s:10Foundation4DataV", + "mangledName": "$s10Foundation4DataV", + "moduleName": "Foundation", + "declAttributes": ["Frozen"], + "isExternal": true, + "conformances": [ + { + "kind": "Conformance", + "name": "ReferenceConvertible", + "printedName": "ReferenceConvertible", + "children": [ + { + "kind": "TypeWitness", + "name": "ReferenceType", + "printedName": "ReferenceType", + "children": [ + { + "kind": "TypeNominal", + "name": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:10Foundation20ReferenceConvertibleP", + "mangledName": "$s10Foundation20ReferenceConvertibleP" + }, + { + "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": "RandomAccessCollection", + "printedName": "RandomAccessCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sk", + "mangledName": "$sSk" + }, + { + "kind": "Conformance", + "name": "MutableCollection", + "printedName": "MutableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:SM", + "mangledName": "$sSM" + }, + { + "kind": "Conformance", + "name": "RangeReplaceableCollection", + "printedName": "RangeReplaceableCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + } + ], + "usr": "s:Sm", + "mangledName": "$sSm" + }, + { + "kind": "Conformance", + "name": "MutableDataProtocol", + "printedName": "MutableDataProtocol", + "usr": "s:10Foundation19MutableDataProtocolP", + "mangledName": "$s10Foundation19MutableDataProtocolP" + }, + { + "kind": "Conformance", + "name": "ContiguousBytes", + "printedName": "ContiguousBytes", + "usr": "s:10Foundation15ContiguousBytesP", + "mangledName": "$s10Foundation15ContiguousBytesP" + }, + { + "kind": "Conformance", + "name": "Sendable", + "printedName": "Sendable", + "usr": "s:s8SendableP", + "mangledName": "$ss8SendableP" + }, + { + "kind": "Conformance", + "name": "BidirectionalCollection", + "printedName": "BidirectionalCollection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:SK", + "mangledName": "$sSK" + }, + { + "kind": "Conformance", + "name": "Collection", + "printedName": "Collection", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Index", + "printedName": "Index", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "SubSequence", + "printedName": "SubSequence", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Indices", + "printedName": "Indices", + "children": [ + { + "kind": "TypeNominal", + "name": "Range", + "printedName": "Swift.Range", + "children": [ + { + "kind": "TypeNominal", + "name": "Int", + "printedName": "Swift.Int", + "usr": "s:Si" + } + ], + "usr": "s:Sn" + } + ] + } + ], + "usr": "s:Sl", + "mangledName": "$sSl" + }, + { + "kind": "Conformance", + "name": "DataProtocol", + "printedName": "DataProtocol", + "children": [ + { + "kind": "TypeWitness", + "name": "Regions", + "printedName": "Regions", + "children": [ + { + "kind": "TypeNominal", + "name": "CollectionOfOne", + "printedName": "Swift.CollectionOfOne", + "children": [ + { + "kind": "TypeNominal", + "name": "Data", + "printedName": "Foundation.Data", + "usr": "s:10Foundation4DataV" + } + ], + "usr": "s:s15CollectionOfOneV" + } + ] + } + ], + "usr": "s:10Foundation12DataProtocolP", + "mangledName": "$s10Foundation12DataProtocolP" + }, + { + "kind": "Conformance", + "name": "Sequence", + "printedName": "Sequence", + "children": [ + { + "kind": "TypeWitness", + "name": "Element", + "printedName": "Element", + "children": [ + { + "kind": "TypeNominal", + "name": "UInt8", + "printedName": "Swift.UInt8", + "usr": "s:s5UInt8V" + } + ] + }, + { + "kind": "TypeWitness", + "name": "Iterator", + "printedName": "Iterator", + "children": [ + { + "kind": "TypeNominal", + "name": "Iterator", + "printedName": "Foundation.Data.Iterator", + "usr": "s:10Foundation4DataV8IteratorV" + } + ] + } + ], + "usr": "s:ST", + "mangledName": "$sST" + }, + { + "kind": "Conformance", + "name": "CustomStringConvertible", + "printedName": "CustomStringConvertible", + "usr": "s:s23CustomStringConvertibleP", + "mangledName": "$ss23CustomStringConvertibleP" + }, + { + "kind": "Conformance", + "name": "CustomDebugStringConvertible", + "printedName": "CustomDebugStringConvertible", + "usr": "s:s28CustomDebugStringConvertibleP", + "mangledName": "$ss28CustomDebugStringConvertibleP" + }, + { + "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": "NSData", + "printedName": "Foundation.NSData", + "usr": "c:objc(cs)NSData" + } + ] + } + ], + "usr": "s:s21_ObjectiveCBridgeableP", + "mangledName": "$ss21_ObjectiveCBridgeableP" + }, + { + "kind": "Conformance", + "name": "Decodable", + "printedName": "Decodable", + "usr": "s:Se", + "mangledName": "$sSe" + }, + { + "kind": "Conformance", + "name": "Encodable", + "printedName": "Encodable", + "usr": "s:SE", + "mangledName": "$sSE" + } + ] + } + ], + "json_format_version": 8 + }, + "ConstValues": [ + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 261, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Writing.swift", + "kind": "IntegerLiteral", + "offset": 283, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluatorV2.swift", + "kind": "BooleanLiteral", + "offset": 288, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluatorV2.swift", + "kind": "BooleanLiteral", + "offset": 610, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/UserJourneyTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 408, + "length": 22, + "value": "\"UserJourneyTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 241, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 288, + "length": 3, + "value": "100" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 301, + "length": 18, + "value": "101" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 329, + "length": 10, + "value": "102" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 373, + "length": 3, + "value": "200" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 386, + "length": 7, + "value": "201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 403, + "length": 8, + "value": "202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 27, + "value": "203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 458, + "length": 9, + "value": "204" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 12, + "value": "205" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 499, + "length": 14, + "value": "206" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 523, + "length": 11, + "value": "207" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 544, + "length": 15, + "value": "208" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 578, + "length": 3, + "value": "226" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 3, + "value": "300" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 645, + "length": 16, + "value": "301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 671, + "length": 5, + "value": "302" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 686, + "length": 8, + "value": "303" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 704, + "length": 11, + "value": "304" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 725, + "length": 8, + "value": "305" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 743, + "length": 11, + "value": "306" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 764, + "length": 17, + "value": "307" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 17, + "value": "308" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 855, + "length": 3, + "value": "400" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 868, + "length": 12, + "value": "401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 890, + "length": 15, + "value": "402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 915, + "length": 9, + "value": "403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 934, + "length": 8, + "value": "404" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 952, + "length": 16, + "value": "405" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 978, + "length": 13, + "value": "406" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1001, + "length": 27, + "value": "407" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1038, + "length": 14, + "value": "408" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1062, + "length": 8, + "value": "409" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1080, + "length": 4, + "value": "410" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1094, + "length": 14, + "value": "411" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1118, + "length": 18, + "value": "412" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1146, + "length": 15, + "value": "413" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1171, + "length": 10, + "value": "414" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 20, + "value": "415" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1221, + "length": 19, + "value": "416" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1250, + "length": 17, + "value": "417" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1277, + "length": 9, + "value": "418" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1317, + "length": 3, + "value": "421" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1330, + "length": 19, + "value": "422" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1359, + "length": 6, + "value": "423" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1375, + "length": 16, + "value": "424" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1419, + "length": 3, + "value": "426" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1455, + "length": 3, + "value": "428" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1468, + "length": 15, + "value": "429" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1523, + "length": 3, + "value": "431" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1565, + "length": 3, + "value": "451" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1624, + "length": 3, + "value": "500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1637, + "length": 14, + "value": "501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1661, + "length": 10, + "value": "502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1681, + "length": 18, + "value": "503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1709, + "length": 14, + "value": "504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1733, + "length": 23, + "value": "505" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1766, + "length": 21, + "value": "506" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1797, + "length": 19, + "value": "507" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1826, + "length": 12, + "value": "508" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1862, + "length": 3, + "value": "510" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 29, + "value": "511" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/Request.swift", + "kind": "StringLiteral", + "offset": 2132, + "length": 12, + "value": "\"MedalliaDigitalSDK.RequestError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MedalliaDigital.swift", + "kind": "BooleanLiteral", + "offset": 8603, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 236, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 5, + "value": "\"GET\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 236, + "length": 6, + "value": "\"POST\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 5, + "value": "\"PUT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 8, + "value": "\"DELETE\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "BooleanLiteral", + "offset": 3178, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/RestClient/RestClient.swift", + "kind": "BooleanLiteral", + "offset": 3219, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomAppearanceEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetCustomAppearanceEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 35, + "value": "\"application/x-www-form-urlencoded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 18, + "value": "\"application/json\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 35, + "value": "\"application/x-www-form-urlencoded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 312, + "length": 18, + "value": "\"application/json\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 425, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 385, + "length": 14, + "value": "\"Content-Type\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/URLRequest+Data.swift", + "kind": "StringLiteral", + "offset": 425, + "length": 15, + "value": "\"Authorization\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetInterceptListenerEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.SetInterceptListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 305, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 345, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 379, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/Throttle.swift", + "kind": "IntegerLiteral", + "offset": 384, + "length": 4, + "value": "1000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 504, + "length": 12, + "value": "\"yyyy-MM-dd\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 574, + "length": 20, + "value": "\"dd-MM HH:mm:ss.SSS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 36, + "value": "\"MDLogMessageDidLogNotificationName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 41, + "value": "\"MDLogMessageNotificationUserInfoMessage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 871, + "length": 42, + "value": "\"MDLogMessageNotificationUserInfoLogLevel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 1523, + "length": 29, + "value": "\"com.medallia.logsEventQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Logger/Logger.swift", + "kind": "StringLiteral", + "offset": 1582, + "length": 22, + "value": "\"com.medallia.digital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastDeclineTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 38, + "value": "\"MedalliaDigitalSDK.AppRatingLastDeclineTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/InvitationDisplayedCollector.swift", + "kind": "StringLiteral", + "offset": 207, + "length": 28, + "value": "\"MedalliaDigitalSDK.InvitationDisplayedCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 214, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 225, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/JWTokenParser/JWTokenParser.swift", + "kind": "IntegerLiteral", + "offset": 242, + "length": 9, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 282, + "length": 9, + "value": "\"Bearer_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 353, + "length": 9, + "value": "\"Form ID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 393, + "length": 11, + "value": "\"Form Name\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 440, + "length": 17, + "value": "\"mec_question_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 498, + "length": 23, + "value": "\"mec_external_media_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 555, + "length": 15, + "value": "\"mec_ballot_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 724, + "length": 13, + "value": "\"userJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "StringLiteral", + "offset": 770, + "length": 8, + "value": "\"events\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/MedalliaDigitalClient.swift", + "kind": "BooleanLiteral", + "offset": 20159, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/PromptDisplayedCollector.swift", + "kind": "StringLiteral", + "offset": 203, + "length": 24, + "value": "\"MedalliaDigitalSDK.PromptDisplayedCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/IsOCQUserSetCollector.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.IsOCQUserSetCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/ShowFormCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.ShowFormCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFormDelegateData.swift", + "kind": "BooleanLiteral", + "offset": 746, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFormDelegateData.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 18, + "value": "\"MedalliaDigitalSDK.MDFormDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptTriggeredEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.PromptTriggeredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/JWToken.swift", + "kind": "Dictionary", + "offset": 460, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/JWToken.swift", + "kind": "Dictionary", + "offset": 491, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/ApiToken.swift", + "kind": "StringLiteral", + "offset": 169, + "length": 8, + "value": "\"MedalliaDigitalSDK.ApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomInterceptListenerEvent.swift", + "kind": "StringLiteral", + "offset": 201, + "length": 31, + "value": "\"MedalliaDigitalSDK.SetCustomInterceptListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 252, + "length": 3, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 1212, + "length": 4, + "value": "30.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/UIColor+Hex.swift", + "kind": "FloatLiteral", + "offset": 1346, + "length": 4, + "value": "30.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/DisableInterceptEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.DisableInterceptEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetFeedbackCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetFeedbackCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 636, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 698, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1015, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1037, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1058, + "length": 2, + "value": "19" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1083, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1609, + "length": 2, + "value": "30" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 1952, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Entry.swift", + "kind": "IntegerLiteral", + "offset": 2732, + "length": 2, + "value": "46" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 400, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 451, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 484, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 546, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 583, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 636, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 690, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/MedalliaDigitalBrainContract.swift", + "kind": "BooleanLiteral", + "offset": 744, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/PreviewApp/Managers/FilesManager.swift", + "kind": "StringLiteral", + "offset": 290, + "length": 20, + "value": "\"MedalliaPreviewApp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/DeleteStorageEvent.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 18, + "value": "\"MedalliaDigitalSDK.DeleteStorageEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Serialization.swift", + "kind": "BooleanLiteral", + "offset": 1299, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 256, + "length": 21, + "value": "\"medallia_form_title\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 29, + "value": "\"medallia_modal_close_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 396, + "length": 33, + "value": "\"medallia_banner_feedback_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 30, + "value": "\"medallia_banner_close_button\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 541, + "length": 33, + "value": "\"medallia_banner_title_text_view\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/AccessibilityIdentifiers.swift", + "kind": "StringLiteral", + "offset": 615, + "length": 35, + "value": "\"medallia_banner_message_text_view\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/GetResourceClient.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 17, + "value": "\"MedalliaDigitalSDK.GetResourceClient\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/QuarantineValidationClient.swift", + "kind": "StringLiteral", + "offset": 504, + "length": 27, + "value": "\"CUUID file does not exist\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastTriggerTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 208, + "length": 38, + "value": "\"MedalliaDigitalSDK.AppRatingLastTriggerTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.PromptDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/InitCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 17, + "value": "\"MedalliaDigitalSDK.InitCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/CsatCollector.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 13, + "value": "\"MedalliaDigitalSDK.CsatCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/AnalyticsTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 405, + "length": 20, + "value": "\"AnalyticsTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 260, + "length": 8, + "value": "\"Cancel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 323, + "length": 49, + "value": "\"Are You Sure You Want To Delete Captured Media?\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 405, + "length": 8, + "value": "\"Delete\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 469, + "length": 25, + "value": "\"Replace Captured Media?\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 549, + "length": 85, + "value": "\"Only one file may be captured. You are about to delete the previous captured media.\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 668, + "length": 9, + "value": "\"Replace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 718, + "length": 12, + "value": "\"Data Usage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 770, + "length": 147, + "value": "\"You are using a cellular data connection. Your captured media is large and will drain up your package, it is recommended to use a WiFi connection\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 955, + "length": 16, + "value": "\"No Permissions\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1008, + "length": 43, + "value": "\"The requested action cannot be completed.\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1083, + "length": 8, + "value": "\"Got it\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 6, + "value": "\"Back\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Media/DefaultMediaConfigurations .swift", + "kind": "StringLiteral", + "offset": 1160, + "length": 7, + "value": "\"Alert\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetUserIdEvent.swift", + "kind": "StringLiteral", + "offset": 184, + "length": 14, + "value": "\"MedalliaDigitalSDK.SetUserIdEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 566, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 640, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 678, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 712, + "length": 1, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 744, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+MediaCapture.swift", + "kind": "IntegerLiteral", + "offset": 782, + "length": 1, + "value": "6" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetInterceptCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.SetInterceptCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 12, + "value": "\"MDApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 332, + "length": 15, + "value": "\"MDAccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 406, + "length": 10, + "value": "\"MDUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 18, + "value": "\"MDpreviousUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 552, + "length": 21, + "value": "\"MDPreviousSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 632, + "length": 13, + "value": "\"MDSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 18, + "value": "\"MDSessionCounter\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 20, + "value": "\"MDCustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 16, + "value": "\"MDTargetEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 935, + "length": 29, + "value": "\"MDConfigurationUUIDContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1056, + "length": 11, + "value": "\"MDOcqUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 9, + "value": "\"MDcUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1194, + "length": 12, + "value": "\"MDCUuidURL\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 18, + "value": "\"MDLastSdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 17, + "value": "\"MDLastOsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1418, + "length": 20, + "value": "\"MDSdkKillTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 23, + "value": "\"MDSdkRecoverTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1579, + "length": 15, + "value": "\"MDIsSdkKilled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 16, + "value": "\"MDisSdkStopped\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 43, + "value": "\"MDShouldCheckSDKRestoreFromKillOnOsChange\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 17, + "value": "\"MDRevertStopSdk\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1906, + "length": 25, + "value": "\"MDPreviousIsAnalyticsV2\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1990, + "length": 33, + "value": "\"MDPreviousShouldSendUserJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2082, + "length": 12, + "value": "\"MDDeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 18, + "value": "\"MDFormsAvailable\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2230, + "length": 31, + "value": "\"MDLocalConfigurationTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 16, + "value": "\"MDSdkFramewrok\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 10, + "value": "\"MDLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2464, + "length": 12, + "value": "\"MDOsLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2535, + "length": 31, + "value": "\"MSIsUpdateCustomLocaleWithApi\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2625, + "length": 21, + "value": "\"MDAppAppearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2705, + "length": 15, + "value": "\"MDIsDebugForm\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 28, + "value": "\"MDDeliveredNotificationIds\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2866, + "length": 20, + "value": "\"MDPreInitCallbacks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2945, + "length": 24, + "value": "\"MDIsPreInitUserIdEmpty\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 261, + "length": 12, + "value": "\"MDApiToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 332, + "length": 15, + "value": "\"MDAccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 406, + "length": 10, + "value": "\"MDUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 475, + "length": 18, + "value": "\"MDpreviousUserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 552, + "length": 21, + "value": "\"MDPreviousSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 632, + "length": 13, + "value": "\"MDSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 18, + "value": "\"MDSessionCounter\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 781, + "length": 20, + "value": "\"MDCustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 860, + "length": 16, + "value": "\"MDTargetEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 935, + "length": 29, + "value": "\"MDConfigurationUUIDContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1056, + "length": 11, + "value": "\"MDOcqUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1126, + "length": 9, + "value": "\"MDcUUID\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1194, + "length": 12, + "value": "\"MDCUuidURL\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1265, + "length": 18, + "value": "\"MDLastSdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1342, + "length": 17, + "value": "\"MDLastOsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1418, + "length": 20, + "value": "\"MDSdkKillTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1497, + "length": 23, + "value": "\"MDSdkRecoverTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1579, + "length": 15, + "value": "\"MDIsSdkKilled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1653, + "length": 16, + "value": "\"MDisSdkStopped\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1728, + "length": 43, + "value": "\"MDShouldCheckSDKRestoreFromKillOnOsChange\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 17, + "value": "\"MDRevertStopSdk\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1906, + "length": 25, + "value": "\"MDPreviousIsAnalyticsV2\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 1990, + "length": 33, + "value": "\"MDPreviousShouldSendUserJourney\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2082, + "length": 12, + "value": "\"MDDeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2153, + "length": 18, + "value": "\"MDFormsAvailable\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2230, + "length": 31, + "value": "\"MDLocalConfigurationTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2320, + "length": 16, + "value": "\"MDSdkFramewrok\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2395, + "length": 10, + "value": "\"MDLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2464, + "length": 12, + "value": "\"MDOsLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2535, + "length": 31, + "value": "\"MSIsUpdateCustomLocaleWithApi\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2625, + "length": 21, + "value": "\"MDAppAppearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2705, + "length": 15, + "value": "\"MDIsDebugForm\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2779, + "length": 28, + "value": "\"MDDeliveredNotificationIds\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2866, + "length": 20, + "value": "\"MDPreInitCallbacks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Storage/Storage.swift", + "kind": "StringLiteral", + "offset": 2945, + "length": 24, + "value": "\"MDIsPreInitUserIdEmpty\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ModelFactory/ModelFactory.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 6, + "value": "\"true\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 5, + "value": "60000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 328, + "length": 5, + "value": "60000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 399, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 478, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "BooleanLiteral", + "offset": 534, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 604, + "length": 5, + "value": "10000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "BooleanLiteral", + "offset": 900, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 953, + "length": 4, + "value": "2500" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "FloatLiteral", + "offset": 1000, + "length": 4, + "value": "15.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 1049, + "length": 4, + "value": "7000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "IntegerLiteral", + "offset": 1114, + "length": 9, + "value": "604800000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/SDKConfigurationDefaults.swift", + "kind": "FloatLiteral", + "offset": 1180, + "length": 4, + "value": "55.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 337, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 374, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 571, + "length": 2, + "value": "90" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 632, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 770, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "Array", + "offset": 1078, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1113, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1153, + "length": 1, + "value": "7" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "IntegerLiteral", + "offset": 1197, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "Dictionary", + "offset": 2181, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 8177, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 23379, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MedalliaDigitalBrain.swift", + "kind": "BooleanLiteral", + "offset": 31730, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/StopSDKEvent.swift", + "kind": "StringLiteral", + "offset": 182, + "length": 12, + "value": "\"MedalliaDigitalSDK.StopSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 15, + "value": "\"MedalliaDigitalSDK.MDExternalError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 5, + "value": "10010" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 702, + "length": 5, + "value": "10011" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 746, + "length": 5, + "value": "10111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 790, + "length": 5, + "value": "10112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 5, + "value": "10012" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 5, + "value": "10013" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 938, + "length": 5, + "value": "10014" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 991, + "length": 5, + "value": "10015" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1044, + "length": 5, + "value": "10016" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1102, + "length": 5, + "value": "10017" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1139, + "length": 5, + "value": "10020" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1173, + "length": 5, + "value": "10021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1208, + "length": 5, + "value": "10022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1240, + "length": 5, + "value": "10023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1293, + "length": 5, + "value": "10030" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1335, + "length": 5, + "value": "10031" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1372, + "length": 5, + "value": "10032" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1401, + "length": 5, + "value": "10034" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1431, + "length": 5, + "value": "10035" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1478, + "length": 5, + "value": "10040" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1521, + "length": 5, + "value": "10041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1561, + "length": 5, + "value": "10042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1597, + "length": 5, + "value": "10043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1642, + "length": 5, + "value": "10044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1692, + "length": 5, + "value": "10050" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 5, + "value": "10051" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDExternalError.swift", + "kind": "IntegerLiteral", + "offset": 1786, + "length": 5, + "value": "10060" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/KillSwitch/KillSwitch.swift", + "kind": "FloatLiteral", + "offset": 2010, + "length": 4, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/AppRatingContract.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 17, + "value": "\"MedalliaDigitalSDK.AppRatingContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "StringLiteral", + "offset": 299, + "length": 13, + "value": "\"MedalliaDigitalSDK.InternalError\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 985, + "length": 4, + "value": "2001" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1026, + "length": 4, + "value": "2002" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1067, + "length": 4, + "value": "2003" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1095, + "length": 4, + "value": "2004" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1128, + "length": 4, + "value": "2005" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1161, + "length": 4, + "value": "2006" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1191, + "length": 4, + "value": "2007" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1220, + "length": 4, + "value": "2008" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1287, + "length": 4, + "value": "2021" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1326, + "length": 4, + "value": "2022" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1365, + "length": 4, + "value": "2023" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1400, + "length": 4, + "value": "2024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1426, + "length": 4, + "value": "2025" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1470, + "length": 4, + "value": "2026" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1503, + "length": 4, + "value": "2027" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1570, + "length": 4, + "value": "2041" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1607, + "length": 4, + "value": "2042" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1645, + "length": 4, + "value": "2043" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1680, + "length": 4, + "value": "2044" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1726, + "length": 4, + "value": "2045" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1777, + "length": 4, + "value": "2046" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1825, + "length": 4, + "value": "2047" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1875, + "length": 4, + "value": "2048" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1930, + "length": 4, + "value": "2049" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 1999, + "length": 4, + "value": "2111" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2037, + "length": 4, + "value": "2112" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2085, + "length": 4, + "value": "2113" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2162, + "length": 4, + "value": "2131" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2206, + "length": 4, + "value": "2132" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2238, + "length": 4, + "value": "2133" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2272, + "length": 4, + "value": "2134" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2335, + "length": 4, + "value": "2151" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2377, + "length": 4, + "value": "2152" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2445, + "length": 4, + "value": "2161" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2477, + "length": 4, + "value": "2162" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2512, + "length": 4, + "value": "2163" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2556, + "length": 4, + "value": "2164" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2586, + "length": 4, + "value": "2165" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2622, + "length": 4, + "value": "2166" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2664, + "length": 4, + "value": "2167" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2706, + "length": 4, + "value": "2168" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2751, + "length": 4, + "value": "2169" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2821, + "length": 4, + "value": "2171" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2867, + "length": 4, + "value": "2172" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2937, + "length": 4, + "value": "2181" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 2972, + "length": 4, + "value": "2182" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3018, + "length": 4, + "value": "2183" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3089, + "length": 4, + "value": "2191" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3123, + "length": 4, + "value": "2192" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3158, + "length": 4, + "value": "2193" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3200, + "length": 4, + "value": "2194" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3259, + "length": 4, + "value": "2201" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3290, + "length": 4, + "value": "2202" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3320, + "length": 4, + "value": "2203" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3399, + "length": 4, + "value": "2301" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3465, + "length": 4, + "value": "2401" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3503, + "length": 4, + "value": "2402" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3542, + "length": 4, + "value": "2403" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3629, + "length": 4, + "value": "2501" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3679, + "length": 4, + "value": "2502" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3723, + "length": 4, + "value": "2503" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/InternalError.swift", + "kind": "IntegerLiteral", + "offset": 3774, + "length": 4, + "value": "2504" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Token/AccessToken.swift", + "kind": "StringLiteral", + "offset": 172, + "length": 11, + "value": "\"MedalliaDigitalSDK.AccessToken\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/PropertyIdCollector.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 19, + "value": "\"MedalliaDigitalSDK.PropertyIdCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 170, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 195, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/Collector.swift", + "kind": "BooleanLiteral", + "offset": 529, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/SynchronizedDictionary.swift", + "kind": "StringLiteral", + "offset": 454, + "length": 37, + "value": "\"com.medallia.synchronizedDictionary\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/EventCollector.swift", + "kind": "BooleanLiteral", + "offset": 406, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/EventCollector.swift", + "kind": "StringLiteral", + "offset": 271, + "length": 14, + "value": "\"MedalliaDigitalSDK.EventCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 167, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "IntegerLiteral", + "offset": 178, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Abstract/PollingCollector.swift", + "kind": "StringLiteral", + "offset": 363, + "length": 16, + "value": "\"MedalliaDigitalSDK.PollingCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RestClientEvent.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 15, + "value": "\"MedalliaDigitalSDK.RestClientEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/HandleNotificationEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.HandleNotificationEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFullFormViewController.swift", + "kind": "StringLiteral", + "offset": 330, + "length": 12, + "value": "\"BackButton\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 216, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 227, + "length": 9, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 246, + "length": 7, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 263, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 282, + "length": 10, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/TransitionType.swift", + "kind": "IntegerLiteral", + "offset": 302, + "length": 4, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInCurrentForegroundCollector.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 32, + "value": "\"MedalliaDigitalSDK.TimeInCurrentForegroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomParametersEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetCustomParametersEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 551, + "length": 7, + "value": "\"2.0.0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 607, + "length": 18, + "value": "\"targetRuleEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 661, + "length": 5, + "value": "\"tre\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 727, + "length": 25, + "value": "\"/\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "StringLiteral", + "offset": 745, + "length": 2, + "value": "\"-%@.js\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/TargetEngine/TargetEvaluator.swift", + "kind": "BooleanLiteral", + "offset": 1675, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDAlertController.swift", + "kind": "BooleanLiteral", + "offset": 244, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 224, + "length": 5, + "value": "10000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 254, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 349, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 467, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 585, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 716, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 850, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 971, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1095, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1219, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1327, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1438, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1555, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1671, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1781, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1891, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 1995, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2109, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2232, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2341, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2448, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2560, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2672, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2801, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 2915, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3030, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3145, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3262, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "IntegerLiteral", + "offset": 3304, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3390, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3502, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3625, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3739, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3861, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 3982, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4090, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4205, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4319, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4444, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4561, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4679, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4797, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 4915, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5038, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5148, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5253, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5385, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5516, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5647, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5758, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 5885, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6011, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6125, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6242, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6374, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsDefaults.swift", + "kind": "BooleanLiteral", + "offset": 6498, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/RevertStopSDKEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.RevertStopSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 557, + "length": 4, + "value": "36.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 610, + "length": 4, + "value": "88.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 663, + "length": 4, + "value": "43.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 712, + "length": 5, + "value": "200.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 763, + "length": 5, + "value": "300.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 815, + "length": 4, + "value": "14.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 860, + "length": 4, + "value": "20.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 918, + "length": 4, + "value": "17.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 979, + "length": 3, + "value": "4.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1035, + "length": 4, + "value": "20.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1083, + "length": 4, + "value": "25.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "FloatLiteral", + "offset": 1131, + "length": 3, + "value": "5.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "BooleanLiteral", + "offset": 1642, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIThankYouViewController.swift", + "kind": "BooleanLiteral", + "offset": 1836, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/BatteryPercentageCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 26, + "value": "\"MedalliaDigitalSDK.BatteryPercentageCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetFeedbackListenerEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.SetFeedbackListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/UserJourney/UserJourney.swift", + "kind": "BooleanLiteral", + "offset": 329, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetInvitationCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.SetInvitationCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/MediaCaptureCollectedEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.MediaCaptureCollectedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 257, + "length": 9, + "value": "\"#FFFFFF\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 329, + "length": 9, + "value": "\"#2C3548\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 404, + "length": 9, + "value": "\"#007AFF\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/SDKColors/SDKColors.swift", + "kind": "StringLiteral", + "offset": 498, + "length": 9, + "value": "\"#0049D3\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Authenticator/Authenticator.swift", + "kind": "IntegerLiteral", + "offset": 832, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/VoiceOverCollector.swift", + "kind": "StringLiteral", + "offset": 192, + "length": 18, + "value": "\"MedalliaDigitalSDK.VoiceOverCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/FeedbackTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 19, + "value": "\"FeedbackTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 296, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 317, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 252, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 296, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDInterceptActionType.swift", + "kind": "IntegerLiteral", + "offset": 317, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/GlobalConstants.swift", + "kind": "StringLiteral", + "offset": 241, + "length": 32, + "value": "\"com.medallia.digital.MobileSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/GlobalConstants.swift", + "kind": "StringLiteral", + "offset": 317, + "length": 27, + "value": "\"timeInBackgroundEventName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 741, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 787, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "Dictionary", + "offset": 826, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3766, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3831, + "length": 9, + "value": "\"#cccccc\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3884, + "length": 8, + "value": "\"System\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 3940, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "StringLiteral", + "offset": 4000, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/PreviewAppBridge.swift", + "kind": "IntegerLiteral", + "offset": 4066, + "length": 4, + "value": "5000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Reading.swift", + "kind": "BooleanLiteral", + "offset": 1012, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive+Reading.swift", + "kind": "BooleanLiteral", + "offset": 4125, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.InvitationDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RestoreFromKillSDKEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 23, + "value": "\"MedalliaDigitalSDK.RestoreFromKillSDKEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Configuration/SDKConfigurationFormContract.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 28, + "value": "\"MedalliaDigitalSDK.SDKConfigurationFormContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/TargetEvaluatorEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.TargetEvaluatorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 5, + "value": "\"en0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 232, + "length": 9, + "value": "\"pdp_ip0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 206, + "length": 5, + "value": "\"en0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/IPCollector.swift", + "kind": "StringLiteral", + "offset": 232, + "length": 9, + "value": "\"pdp_ip0\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TriggerNodeContract.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 19, + "value": "\"MedalliaDigitalSDK.TriggerNodeContract\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetFormCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.SetFormCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 300, + "length": 3, + "value": "0.4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 338, + "length": 3, + "value": "0.3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 385, + "length": 4, + "value": "1.02" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 433, + "length": 3, + "value": "0.8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 477, + "length": 3, + "value": "0.7" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "FloatLiteral", + "offset": 742, + "length": 3, + "value": "0.5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUITransitionViewController.swift", + "kind": "IntegerLiteral", + "offset": 791, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/MediaCaptureSubmitEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.MediaCaptureSubmitEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 244, + "length": 3, + "value": "8.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 251, + "length": 6, + "value": "1024.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/NetworkSpeedCollector.swift", + "kind": "FloatLiteral", + "offset": 260, + "length": 6, + "value": "1024.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadSingleResourceOperation.swift", + "kind": "StringLiteral", + "offset": 286, + "length": 27, + "value": "\"MedalliaDigitalSDK.LoadSingleResourceOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 249, + "length": 11, + "value": "\"osVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 289, + "length": 12, + "value": "\"sdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 330, + "length": 12, + "value": "\"appVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 367, + "length": 8, + "value": "\"osType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 399, + "length": 7, + "value": "\"appId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 10, + "value": "\"deviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 473, + "length": 13, + "value": "\"deviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1225, + "length": 18, + "value": "\"mobileDeviceData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1282, + "length": 18, + "value": "\"deviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1335, + "length": 14, + "value": "\"deviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1384, + "length": 14, + "value": "\"deviceLocale\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1433, + "length": 14, + "value": "\"formLanguage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1484, + "length": 16, + "value": "\"appearanceMode\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1529, + "length": 6, + "value": "\"cuid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController+Communicator.swift", + "kind": "StringLiteral", + "offset": 1572, + "length": 22, + "value": "\"mobileInvitationType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/MediaTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 394, + "length": 16, + "value": "\"MediaTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/OrientationCollector.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 20, + "value": "\"MedalliaDigitalSDK.OrientationCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/SetCustomInterceptCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 201, + "length": 31, + "value": "\"MedalliaDigitalSDK.SetCustomInterceptCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/InitOfflineMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 195, + "length": 25, + "value": "\"MedalliaDigitalSDK.InitOfflineMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TriggerChildGroup.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 17, + "value": "\"MedalliaDigitalSDK.TriggerChildGroup\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptDeferredEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptDeferredEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadTemplatesOperation.swift", + "kind": "IntegerLiteral", + "offset": 664, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadTemplatesOperation.swift", + "kind": "StringLiteral", + "offset": 280, + "length": 22, + "value": "\"MedalliaDigitalSDK.LoadTemplatesOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/TemplateTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 419, + "length": 19, + "value": "\"TemplateTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/PowerTypeCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 18, + "value": "\"MedalliaDigitalSDK.PowerTypeCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormWindow.swift", + "kind": "IntegerLiteral", + "offset": 733, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 351, + "length": 20, + "value": "\"MedalliaDigitalSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 433, + "length": 53, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 466, + "length": 19, + "value": "\"_local_notification\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 527, + "length": 43, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 566, + "length": 3, + "value": "\"_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 619, + "length": 51, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 658, + "length": 11, + "value": "\"_expiration\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 722, + "length": 55, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 761, + "length": 15, + "value": "\"_fire_timestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 816, + "length": 54, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "StringLiteral", + "offset": 855, + "length": 14, + "value": "\"_engagement_id\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/LocalNotifications/LocalNotificationsService.swift", + "kind": "Array", + "offset": 1056, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/PreloadMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 21, + "value": "\"MedalliaDigitalSDK.PreloadMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/FormDataTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 411, + "length": 19, + "value": "\"FormDataTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetEvaluatorContract.swift", + "kind": "BooleanLiteral", + "offset": 2439, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "IntegerLiteral", + "offset": 332, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "IntegerLiteral", + "offset": 383, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LifeCycleCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 18, + "value": "\"MedalliaDigitalSDK.LifeCycleCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/LoggerEvent.swift", + "kind": "StringLiteral", + "offset": 183, + "length": 11, + "value": "\"MedalliaDigitalSDK.LoggerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LastSubmitTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 28, + "value": "\"MedalliaDigitalSDK.LastSubmitTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.CustomInterceptDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationDeclinedEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationDeclinedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/RefreshSessionEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.RefreshSessionEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/LastDeclineTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 29, + "value": "\"MedalliaDigitalSDK.LastDeclineTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetInvitationListenerEvent.swift", + "kind": "StringLiteral", + "offset": 196, + "length": 26, + "value": "\"MedalliaDigitalSDK.SetInvitationListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/SubmitFeedbackEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.SubmitFeedbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 157, + "length": 13, + "value": "\"DeviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 14, + "value": "\"DeviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 226, + "length": 18, + "value": "\"DeviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 18, + "value": "\"DeviceUsedMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 308, + "length": 18, + "value": "\"DeviceFreeMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 21, + "value": "\"DeviceUsedDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 21, + "value": "\"DeviceFreeDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 8, + "value": "\"OsName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 11, + "value": "\"OsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 16, + "value": "\"NetworkCarrier\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 534, + "length": 10, + "value": "\"Language\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 565, + "length": 10, + "value": "\"Timezone\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 13, + "value": "\"NetworkType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 4, + "value": "\"IP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 656, + "length": 14, + "value": "\"NetworkSpeed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 11, + "value": "\"PowerType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 19, + "value": "\"BatteryPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 13, + "value": "\"Orientation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 13, + "value": "\"AdvertiseId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"DeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 876, + "length": 8, + "value": "\"UserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 905, + "length": 10, + "value": "\"UserName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 11, + "value": "\"UserEmail\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 977, + "length": 18, + "value": "\"CustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 21, + "value": "\"SdkAnalyticsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1065, + "length": 9, + "value": "\"AppName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 7, + "value": "\"AppId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 12, + "value": "\"AppVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 11, + "value": "\"Lifecycle\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 12, + "value": "\"SdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1242, + "length": 29, + "value": "\"SessionCalculatedPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 15, + "value": "\"SessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 11, + "value": "\"SessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 12, + "value": "\"PropertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 22, + "value": "\"LastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1460, + "length": 32, + "value": "\"AppRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 31, + "value": "\"AppRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 31, + "value": "\"AppRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 21, + "value": "\"LastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 10, + "value": "\"Location\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1721, + "length": 15, + "value": "\"TimeInSession\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1765, + "length": 18, + "value": "\"TimeInForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1812, + "length": 18, + "value": "\"TimeInBackground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1862, + "length": 21, + "value": "\"InvitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1911, + "length": 17, + "value": "\"PromptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1957, + "length": 18, + "value": "\"InterceptEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 19, + "value": "\"InterceptDisabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2041, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 11, + "value": "\"VoiceOver\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 14, + "value": "\"SdkFramework\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2178, + "length": 27, + "value": "\"LocalNotificationsEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2241, + "length": 25, + "value": "\"TimeInCurrentForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 14, + "value": "\"IsOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2333, + "length": 17, + "value": "\"IsOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2385, + "length": 24, + "value": "\"IsSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2461, + "length": 32, + "value": "\"SessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 157, + "length": 13, + "value": "\"DeviceModel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 14, + "value": "\"DeviceVendor\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 226, + "length": 18, + "value": "\"DeviceResolution\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 267, + "length": 18, + "value": "\"DeviceUsedMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 308, + "length": 18, + "value": "\"DeviceFreeMemory\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 347, + "length": 21, + "value": "\"DeviceUsedDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 389, + "length": 21, + "value": "\"DeviceFreeDiskSpace\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 429, + "length": 8, + "value": "\"OsName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 459, + "length": 11, + "value": "\"OsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 497, + "length": 16, + "value": "\"NetworkCarrier\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 534, + "length": 10, + "value": "\"Language\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 565, + "length": 10, + "value": "\"Timezone\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 599, + "length": 13, + "value": "\"NetworkType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 627, + "length": 4, + "value": "\"IP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 656, + "length": 14, + "value": "\"NetworkSpeed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 11, + "value": "\"PowerType\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 733, + "length": 19, + "value": "\"BatteryPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 776, + "length": 13, + "value": "\"Orientation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 813, + "length": 13, + "value": "\"AdvertiseId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 847, + "length": 10, + "value": "\"DeviceId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 876, + "length": 8, + "value": "\"UserId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 905, + "length": 10, + "value": "\"UserName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 937, + "length": 11, + "value": "\"UserEmail\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 977, + "length": 18, + "value": "\"CustomParameters\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1024, + "length": 21, + "value": "\"SdkAnalyticsVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1065, + "length": 9, + "value": "\"AppName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1092, + "length": 7, + "value": "\"AppId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1122, + "length": 12, + "value": "\"AppVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1156, + "length": 11, + "value": "\"Lifecycle\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1190, + "length": 12, + "value": "\"SdkVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1242, + "length": 29, + "value": "\"SessionCalculatedPercentage\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1297, + "length": 15, + "value": "\"SessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1334, + "length": 11, + "value": "\"SessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1368, + "length": 12, + "value": "\"PropertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1404, + "length": 22, + "value": "\"LastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1460, + "length": 32, + "value": "\"AppRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1525, + "length": 31, + "value": "\"AppRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1589, + "length": 31, + "value": "\"AppRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1643, + "length": 21, + "value": "\"LastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1685, + "length": 10, + "value": "\"Location\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1721, + "length": 15, + "value": "\"TimeInSession\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1765, + "length": 18, + "value": "\"TimeInForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1812, + "length": 18, + "value": "\"TimeInBackground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1862, + "length": 21, + "value": "\"InvitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1911, + "length": 17, + "value": "\"PromptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 1957, + "length": 18, + "value": "\"InterceptEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2005, + "length": 19, + "value": "\"InterceptDisabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2041, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2063, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2090, + "length": 11, + "value": "\"VoiceOver\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2126, + "length": 14, + "value": "\"SdkFramework\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2178, + "length": 27, + "value": "\"LocalNotificationsEnabled\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2241, + "length": 25, + "value": "\"TimeInCurrentForeground\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2291, + "length": 14, + "value": "\"IsOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2333, + "length": 17, + "value": "\"IsOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2385, + "length": 24, + "value": "\"IsSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsInfrastructure.swift", + "kind": "StringLiteral", + "offset": 2461, + "length": 32, + "value": "\"SessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/InterceptProducer.swift", + "kind": "BooleanLiteral", + "offset": 1006, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/AppRatingLastAcceptedTimestampCollector.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 39, + "value": "\"MedalliaDigitalSDK.AppRatingLastAcceptedTimestampCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDFeedbackDelegateData.swift", + "kind": "StringLiteral", + "offset": 212, + "length": 22, + "value": "\"MedalliaDigitalSDK.MDFeedbackDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/EnableInterceptEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.EnableInterceptEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/InitEvent.swift", + "kind": "StringLiteral", + "offset": 179, + "length": 9, + "value": "\"MedalliaDigitalSDK.InitEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormSubmittedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormSubmittedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Compression.swift", + "kind": "Array", + "offset": 1000, + "length": 3281, + "value": "[0x00000000, 0x77073096, 0xee0e612c, 0x990951ba, 0x076dc419, 0x706af48f, 0xe963a535, 0x9e6495a3, 0x0edb8832, 0x79dcb8a4, 0xe0d5e91e, 0x97d2d988, 0x09b64c2b, 0x7eb17cbd, 0xe7b82d07, 0x90bf1d91, 0x1db71064, 0x6ab020f2, 0xf3b97148, 0x84be41de, 0x1adad47d, 0x6ddde4eb, 0xf4d4b551, 0x83d385c7, 0x136c9856, 0x646ba8c0, 0xfd62f97a, 0x8a65c9ec, 0x14015c4f, 0x63066cd9, 0xfa0f3d63, 0x8d080df5, 0x3b6e20c8, 0x4c69105e, 0xd56041e4, 0xa2677172, 0x3c03e4d1, 0x4b04d447, 0xd20d85fd, 0xa50ab56b, 0x35b5a8fa, 0x42b2986c, 0xdbbbc9d6, 0xacbcf940, 0x32d86ce3, 0x45df5c75, 0xdcd60dcf, 0xabd13d59, 0x26d930ac, 0x51de003a, 0xc8d75180, 0xbfd06116, 0x21b4f4b5, 0x56b3c423, 0xcfba9599, 0xb8bda50f, 0x2802b89e, 0x5f058808, 0xc60cd9b2, 0xb10be924, 0x2f6f7c87, 0x58684c11, 0xc1611dab, 0xb6662d3d, 0x76dc4190, 0x01db7106, 0x98d220bc, 0xefd5102a, 0x71b18589, 0x06b6b51f, 0x9fbfe4a5, 0xe8b8d433, 0x7807c9a2, 0x0f00f934, 0x9609a88e, 0xe10e9818, 0x7f6a0dbb, 0x086d3d2d, 0x91646c97, 0xe6635c01, 0x6b6b51f4, 0x1c6c6162, 0x856530d8, 0xf262004e, 0x6c0695ed, 0x1b01a57b, 0x8208f4c1, 0xf50fc457, 0x65b0d9c6, 0x12b7e950, 0x8bbeb8ea, 0xfcb9887c, 0x62dd1ddf, 0x15da2d49, 0x8cd37cf3, 0xfbd44c65, 0x4db26158, 0x3ab551ce, 0xa3bc0074, 0xd4bb30e2, 0x4adfa541, 0x3dd895d7, 0xa4d1c46d, 0xd3d6f4fb, 0x4369e96a, 0x346ed9fc, 0xad678846, 0xda60b8d0, 0x44042d73, 0x33031de5, 0xaa0a4c5f, 0xdd0d7cc9, 0x5005713c, 0x270241aa, 0xbe0b1010, 0xc90c2086, 0x5768b525, 0x206f85b3, 0xb966d409, 0xce61e49f, 0x5edef90e, 0x29d9c998, 0xb0d09822, 0xc7d7a8b4, 0x59b33d17, 0x2eb40d81, 0xb7bd5c3b, 0xc0ba6cad, 0xedb88320, 0x9abfb3b6, 0x03b6e20c, 0x74b1d29a, 0xead54739, 0x9dd277af, 0x04db2615, 0x73dc1683, 0xe3630b12, 0x94643b84, 0x0d6d6a3e, 0x7a6a5aa8, 0xe40ecf0b, 0x9309ff9d, 0x0a00ae27, 0x7d079eb1, 0xf00f9344, 0x8708a3d2, 0x1e01f268, 0x6906c2fe, 0xf762575d, 0x806567cb, 0x196c3671, 0x6e6b06e7, 0xfed41b76, 0x89d32be0, 0x10da7a5a, 0x67dd4acc, 0xf9b9df6f, 0x8ebeeff9, 0x17b7be43, 0x60b08ed5, 0xd6d6a3e8, 0xa1d1937e, 0x38d8c2c4, 0x4fdff252, 0xd1bb67f1, 0xa6bc5767, 0x3fb506dd, 0x48b2364b, 0xd80d2bda, 0xaf0a1b4c, 0x36034af6, 0x41047a60, 0xdf60efc3, 0xa867df55, 0x316e8eef, 0x4669be79, 0xcb61b38c, 0xbc66831a, 0x256fd2a0, 0x5268e236, 0xcc0c7795, 0xbb0b4703, 0x220216b9, 0x5505262f, 0xc5ba3bbe, 0xb2bd0b28, 0x2bb45a92, 0x5cb36a04, 0xc2d7ffa7, 0xb5d0cf31, 0x2cd99e8b, 0x5bdeae1d, 0x9b64c2b0, 0xec63f226, 0x756aa39c, 0x026d930a, 0x9c0906a9, 0xeb0e363f, 0x72076785, 0x05005713, 0x95bf4a82, 0xe2b87a14, 0x7bb12bae, 0x0cb61b38, 0x92d28e9b, 0xe5d5be0d, 0x7cdcefb7, 0x0bdbdf21, 0x86d3d2d4, 0xf1d4e242, 0x68ddb3f8, 0x1fda836e, 0x81be16cd, 0xf6b9265b, 0x6fb077e1, 0x18b74777, 0x88085ae6, 0xff0f6a70, 0x66063bca, 0x11010b5c, 0x8f659eff, 0xf862ae69, 0x616bffd3, 0x166ccf45, 0xa00ae278, 0xd70dd2ee, 0x4e048354, 0x3903b3c2, 0xa7672661, 0xd06016f7, 0x4969474d, 0x3e6e77db, 0xaed16a4a, 0xd9d65adc, 0x40df0b66, 0x37d83bf0, 0xa9bcae53, 0xdebb9ec5, 0x47b2cf7f, 0x30b5ffe9, 0xbdbdf21c, 0xcabac28a, 0x53b39330, 0x24b4a3a6, 0xbad03605, 0xcdd70693, 0x54de5729, 0x23d967bf, 0xb3667a2e, 0xc4614ab8, 0x5d681b02, 0x2a6f2b94, 0xb40bbe37, 0xc30c8ea1, 0x5a05df1b, 0x2d02ef8d]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Data+Compression.swift", + "kind": "BooleanLiteral", + "offset": 7275, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 272, + "length": 22, + "value": "\"lastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 382, + "length": 31, + "value": "\"appRatingLastDeclineTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 502, + "length": 32, + "value": "\"appRatingLastAcceptedTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 622, + "length": 31, + "value": "\"appRatingLastTriggerTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 731, + "length": 21, + "value": "\"lastSubmitTimestamp\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 827, + "length": 18, + "value": "\"refreshSessionId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 924, + "length": 22, + "value": "\"refreshSessionNumber\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1027, + "length": 24, + "value": "\"refreshSessionIfNeeded\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1129, + "length": 21, + "value": "\"invitationDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1224, + "length": 17, + "value": "\"promptDisplayed\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1310, + "length": 12, + "value": "\"propertyId\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1385, + "length": 6, + "value": "\"csat\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1453, + "length": 5, + "value": "\"nps\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1529, + "length": 14, + "value": "\"isOCQUserSet\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1617, + "length": 17, + "value": "\"isOCQRulesValid\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1715, + "length": 24, + "value": "\"isSessionSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/CollectorsEvents.swift", + "kind": "StringLiteral", + "offset": 1828, + "length": 32, + "value": "\"sessionPercentageSampledEvents\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 425, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 447, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 472, + "length": 7, + "value": "1048576" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/Sources/Memory.swift", + "kind": "IntegerLiteral", + "offset": 500, + "length": 10, + "value": "1073741824" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 365, + "length": 20, + "value": "\"MedalliaSDKVersion\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 422, + "length": 5, + "value": "\"iOS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 709, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "IntegerLiteral", + "offset": 801, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 972, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1075, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/DeviceInfo/DeviceInfo.swift", + "kind": "StringLiteral", + "offset": 1147, + "length": 28, + "value": "\"CFBundleShortVersionString\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FeedbackRetryMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 27, + "value": "\"MedalliaDigitalSDK.FeedbackRetryMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 559, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 604, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/TRE V2/TargetingEvaluationLogic.swift", + "kind": "Array", + "offset": 662, + "length": 2, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormClosedEvent.swift", + "kind": "StringLiteral", + "offset": 185, + "length": 15, + "value": "\"MedalliaDigitalSDK.FormClosedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/CustomInterceptSkippedEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 27, + "value": "\"MedalliaDigitalSDK.CustomInterceptSkippedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1944, + "length": 5, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1959, + "length": 5, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 4, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 5, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1944, + "length": 5, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1959, + "length": 5, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1974, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 1988, + "length": 4, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/Log/MDLogLevel.swift", + "kind": "IntegerLiteral", + "offset": 2002, + "length": 5, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/SessionNumberCollector.swift", + "kind": "StringLiteral", + "offset": 145, + "length": 22, + "value": "\"MedalliaDigitalSDK.SessionNumberCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "BooleanLiteral", + "offset": 968, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "BooleanLiteral", + "offset": 1080, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1135, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBaseBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1187, + "length": 2, + "value": "40" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetCustomParameterEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.SetCustomParameterEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/PollingCollectors/DeviceVendorCollector.swift", + "kind": "StringLiteral", + "offset": 260, + "length": 7, + "value": "\"Apple\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 957, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 905, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDFormTriggerType.swift", + "kind": "IntegerLiteral", + "offset": 957, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 313, + "length": 10, + "value": "\"Database\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 370, + "length": 15, + "value": "\"attributeName\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 432, + "length": 16, + "value": "\"attributeValue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 496, + "length": 10, + "value": "\"Database\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "StringLiteral", + "offset": 559, + "length": 27, + "value": "\"NSSecureUnarchiveFromData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "BooleanLiteral", + "offset": 657, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Database.swift", + "kind": "BooleanLiteral", + "offset": 17012, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 2134, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2600, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2648, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "StringLiteral", + "offset": 2684, + "length": 4, + "value": "\"-1\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2727, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2772, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2815, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2856, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 2938, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 2977, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3008, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3051, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3103, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "BooleanLiteral", + "offset": 3489, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 3528, + "length": 4, + "value": "0.97" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIBaseFormViewController.swift", + "kind": "FloatLiteral", + "offset": 3643, + "length": 3, + "value": "2.5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 495, + "length": 6, + "value": "\"CSAT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/FeedbackPayloadUtility.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 5, + "value": "\"NPS\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 231, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/PreInitFormDisplay.swift", + "kind": "IntegerLiteral", + "offset": 257, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDCustomInterceptPayload.swift", + "kind": "StringLiteral", + "offset": 214, + "length": 24, + "value": "\"MedalliaDigitalSDK.MDCustomInterceptPayload\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 377, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 388, + "length": 7, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 405, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 421, + "length": 4, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 435, + "length": 5, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/BaseEvent.swift", + "kind": "IntegerLiteral", + "offset": 450, + "length": 7, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "StringLiteral", + "offset": 526, + "length": 27, + "value": "\"kplConfig.submitUrlPrefix\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "StringLiteral", + "offset": 600, + "length": 27, + "value": "\"kplConfig.submitUrlSuffix\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "Dictionary", + "offset": 1895, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "IntegerLiteral", + "offset": 1949, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 2703, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 19967, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "BooleanLiteral", + "offset": 20034, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsAdmin.swift", + "kind": "IntegerLiteral", + "offset": 41685, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "StringLiteral", + "offset": 490, + "length": 28, + "value": "\"com.medallia.formDataQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "FloatLiteral", + "offset": 554, + "length": 3, + "value": "0.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "BooleanLiteral", + "offset": 615, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormExecutor.swift", + "kind": "BooleanLiteral", + "offset": 678, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Error/InternalErrorEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.InternalErrorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/OCQ/QuarantineValidationResponse.swift", + "kind": "BooleanLiteral", + "offset": 408, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/InterceptMechanismEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InterceptMechanismEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/ShowFormEvent.swift", + "kind": "StringLiteral", + "offset": 183, + "length": 13, + "value": "\"MedalliaDigitalSDK.ShowFormEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/NpsCollector.swift", + "kind": "StringLiteral", + "offset": 191, + "length": 12, + "value": "\"MedalliaDigitalSDK.NpsCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/CustomInterceptTriggerCallbackEvent.swift", + "kind": "StringLiteral", + "offset": 205, + "length": 35, + "value": "\"MedalliaDigitalSDK.CustomInterceptTriggerCallbackEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDCustomInterceptDelegateData.swift", + "kind": "StringLiteral", + "offset": 219, + "length": 29, + "value": "\"MedalliaDigitalSDK.MDCustomInterceptDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsLoader.swift", + "kind": "IntegerLiteral", + "offset": 596, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/PreloadMechanism/FormsLoader.swift", + "kind": "StringLiteral", + "offset": 737, + "length": 36, + "value": "\"com.medallia.delegateDispatchQueue\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/ResourceContract.swift", + "kind": "BooleanLiteral", + "offset": 441, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/CloseEngagementEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.CloseEngagementEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/FileManager+ZIP.swift", + "kind": "BooleanLiteral", + "offset": 955, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 256, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 271, + "length": 10, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 295, + "length": 9, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "IntegerLiteral", + "offset": 318, + "length": 6, + "value": "4" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1727, + "length": 11, + "value": "\"FormId : \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1750, + "length": 4, + "value": "\", \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/FormData.swift", + "kind": "StringLiteral", + "offset": 1757, + "length": 15, + "value": "\"FormStatus : \"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Session/Session.swift", + "kind": "IntegerLiteral", + "offset": 268, + "length": 2, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/ResourceContractTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 438, + "length": 27, + "value": "\"ResourceContractTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/MDDelegates/MDInterceptDelegateData.swift", + "kind": "StringLiteral", + "offset": 213, + "length": 23, + "value": "\"MedalliaDigitalSDK.MDInterceptDelegateData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormDismissedEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.FormDismissedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/SessionIdCollector.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 18, + "value": "\"MedalliaDigitalSDK.SessionIdCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadResourcesOperation.swift", + "kind": "IntegerLiteral", + "offset": 601, + "length": 1, + "value": "5" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Resources/LoadResourcesOperation.swift", + "kind": "StringLiteral", + "offset": 217, + "length": 22, + "value": "\"MedalliaDigitalSDK.LoadResourcesOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Database/Entities/QuarantineValidationRuleTableData+CoreDataClass.swift", + "kind": "StringLiteral", + "offset": 472, + "length": 35, + "value": "\"QuarantineValidationRuleTableData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/UpdateCustomLocaleEvent.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 23, + "value": "\"MedalliaDigitalSDK.UpdateCustomLocaleEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/Templates/LoadSingleTemplateOperation.swift", + "kind": "StringLiteral", + "offset": 295, + "length": 27, + "value": "\"MedalliaDigitalSDK.LoadSingleTemplateOperation\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 500, + "length": 14, + "value": "\"CustomParams\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 10, + "value": "\"logLevel\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 597, + "length": 24, + "value": "\"setInteceptListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 659, + "length": 20, + "value": "\"setFormListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 721, + "length": 24, + "value": "\"setFeedbackListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 794, + "length": 31, + "value": "\"setCustomInterceptListenerKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 861, + "length": 18, + "value": "\"revertStopSdkKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 918, + "length": 21, + "value": "\"sdkFramewrokTypeKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 975, + "length": 18, + "value": "\"deleteStorageKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1031, + "length": 20, + "value": "\"RestoreFromKillSDK\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1089, + "length": 20, + "value": "\"enableInterceptKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1148, + "length": 21, + "value": "\"disableInterceptKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1210, + "length": 23, + "value": "\"updateCustomLocaleKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/PreInitEvents.swift", + "kind": "StringLiteral", + "offset": 1274, + "length": 23, + "value": "\"handleNotificationKey\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "BooleanLiteral", + "offset": 231, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "BooleanLiteral", + "offset": 259, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 13, + "value": "\"isExecuting\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 12, + "value": "\"isFinished\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 320, + "length": 13, + "value": "\"isExecuting\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/MDOperation.swift", + "kind": "StringLiteral", + "offset": 358, + "length": 12, + "value": "\"isFinished\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "Dictionary", + "offset": 616, + "length": 3, + "value": "[]" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "StringLiteral", + "offset": 1795, + "length": 5, + "value": "\"md_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "StringLiteral", + "offset": 1830, + "length": 9, + "value": "\"md_ios_\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 2115, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 56920, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "BooleanLiteral", + "offset": 56965, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "IntegerLiteral", + "offset": 57016, + "length": 3, + "value": "512" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AnalyticsBridge.swift", + "kind": "IntegerLiteral", + "offset": 57066, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/InvitationAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 193, + "length": 23, + "value": "\"MedalliaDigitalSDK.InvitationAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 215, + "length": 11, + "value": "\".DS_Store\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 258, + "length": 11, + "value": "\"templates\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 306, + "length": 11, + "value": "\"resources\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 356, + "length": 18, + "value": "\"targetRuleEngine\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 421, + "length": 17, + "value": "\"MedalliaDigital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 491, + "length": 18, + "value": "\".MedalliaDigital\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 545, + "length": 10, + "value": "\"property\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 600, + "length": 15, + "value": "\"configuration\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 652, + "length": 7, + "value": "\"media\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/FileService/FileService.swift", + "kind": "StringLiteral", + "offset": 692, + "length": 7, + "value": "\".html\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 248, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 230, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 248, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/MDAppearanceMode.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/FormLoadedEvent.swift", + "kind": "StringLiteral", + "offset": 187, + "length": 15, + "value": "\"MedalliaDigitalSDK.FormLoadedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Feedback/ThankYouPromptDisplayedEvent.swift", + "kind": "StringLiteral", + "offset": 198, + "length": 28, + "value": "\"MedalliaDigitalSDK.ThankYouPromptDisplayedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/API/SetFormListenerEvent.swift", + "kind": "StringLiteral", + "offset": 190, + "length": 20, + "value": "\"MedalliaDigitalSDK.SetFormListenerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInForegroundCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 25, + "value": "\"MedalliaDigitalSDK.TimeInForegroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 462, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDEngagementType.swift", + "kind": "IntegerLiteral", + "offset": 462, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFormHeaderView.swift", + "kind": "IntegerLiteral", + "offset": 477, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Form/MDUIFormHeaderView.swift", + "kind": "StringLiteral", + "offset": 263, + "length": 18, + "value": "\"MedalliaDigitalSDK.MDUIFormHeaderView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/TimeInBackgroundCollector.swift", + "kind": "StringLiteral", + "offset": 140, + "length": 25, + "value": "\"MedalliaDigitalSDK.TimeInBackgroundCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/InterfaceOrientationManager.swift", + "kind": "BooleanLiteral", + "offset": 261, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/InterfaceOrientationManager.swift", + "kind": "BooleanLiteral", + "offset": 319, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/ResourcesSizeEvent.swift", + "kind": "StringLiteral", + "offset": 188, + "length": 18, + "value": "\"MedalliaDigitalSDK.ResourcesSizeEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/Callback/FormLoadSpinnerEvent.swift", + "kind": "StringLiteral", + "offset": 136, + "length": 20, + "value": "\"MedalliaDigitalSDK.FormLoadSpinnerEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/AppRating/PromptAcceptedEvent.swift", + "kind": "StringLiteral", + "offset": 189, + "length": 19, + "value": "\"MedalliaDigitalSDK.PromptAcceptedEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 311, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 244, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 269, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 290, + "length": 1, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalBrain/MDSDKFrameworkType.swift", + "kind": "IntegerLiteral", + "offset": 311, + "length": 1, + "value": "3" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Analytics/InternalSdk/NativeTargetEvaluatorEvent.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 26, + "value": "\"MedalliaDigitalSDK.NativeTargetEvaluatorEvent\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Collectors/EventCollectors/IsOCQRulesValidCollector.swift", + "kind": "StringLiteral", + "offset": 194, + "length": 24, + "value": "\"MedalliaDigitalSDK.IsOCQRulesValidCollector\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/ConfigurationClient.swift", + "kind": "StringLiteral", + "offset": 2654, + "length": 13, + "value": "\"tre-version\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/MedalliaDigitalClient/Requests/ConfigurationClient.swift", + "kind": "StringLiteral", + "offset": 2654, + "length": 13, + "value": "\"tre-version\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 225, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 273, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 315, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 354, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 394, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 439, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 483, + "length": 4, + "value": "true" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 535, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 582, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "BooleanLiteral", + "offset": 617, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "FloatLiteral", + "offset": 833, + "length": 3, + "value": "5.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "IntegerLiteral", + "offset": 1152, + "length": 2, + "value": "20" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 1317, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 1362, + "length": 2, + "value": "\"\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/MDUIBannerView.swift", + "kind": "StringLiteral", + "offset": 131, + "length": 14, + "value": "\"MedalliaDigitalSDK.MDUIBannerView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 8, + "value": "\"BOTTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 173, + "length": 8, + "value": "\"BOTTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/BannerPositionFrame.swift", + "kind": "StringLiteral", + "offset": 197, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/NSLayoutConstraint+Common.swift", + "kind": "IntegerLiteral", + "offset": 430, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Extensions/NSLayoutConstraint+Common.swift", + "kind": "FloatLiteral", + "offset": 455, + "length": 3, + "value": "1.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"BANNER\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"ALERT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 284, + "length": 19, + "value": "\"PUSH_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 8, + "value": "\"CUSTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 20, + "value": "\"LOCAL_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 222, + "length": 8, + "value": "\"BANNER\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 248, + "length": 7, + "value": "\"ALERT\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 284, + "length": 19, + "value": "\"PUSH_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 322, + "length": 8, + "value": "\"CUSTOM\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 360, + "length": 20, + "value": "\"LOCAL_NOTIFICATION\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Model/InviteData.swift", + "kind": "StringLiteral", + "offset": 390, + "length": 10, + "value": "\"MedalliaDigitalSDK.InviteData\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 209, + "length": 33, + "value": "\"Feedback Submitted Successfully\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 274, + "length": 7, + "value": "\"Close\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 323, + "length": 18, + "value": "\"Provide Feedback\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 375, + "length": 10, + "value": "\"Rate App\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 420, + "length": 11, + "value": "\"No Thanks\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 468, + "length": 13, + "value": "\"Maybe Later\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 517, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 568, + "length": 9, + "value": "\"#cccccc\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 614, + "length": 8, + "value": "\"System\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 657, + "length": 5, + "value": "\"TOP\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "StringLiteral", + "offset": 704, + "length": 9, + "value": "\"#ffffff\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 747, + "length": 4, + "value": "5000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 906, + "length": 4, + "value": "50.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 967, + "length": 4, + "value": "66.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "FloatLiteral", + "offset": 1027, + "length": 3, + "value": "0.1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1076, + "length": 2, + "value": "17" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1122, + "length": 2, + "value": "15" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/BannerView/DefaultInvitationConfigurations.swift", + "kind": "IntegerLiteral", + "offset": 1169, + "length": 2, + "value": "10" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 331, + "length": 3, + "value": "126" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 385, + "length": 2, + "value": "60" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "IntegerLiteral", + "offset": 439, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "FloatLiteral", + "offset": 476, + "length": 3, + "value": "4.0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "BooleanLiteral", + "offset": 516, + "length": 5, + "value": "false" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/ThankYou/MDUIPoweredByView.swift", + "kind": "StringLiteral", + "offset": 182, + "length": 17, + "value": "\"MedalliaDigitalSDK.MDUIPoweredByView\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 274, + "length": 2, + "value": "16" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 277, + "length": 4, + "value": "1024" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 487, + "length": 5, + "value": "0o644" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 535, + "length": 5, + "value": "0o755" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 630, + "length": 1, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 661, + "length": 2, + "value": "22" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 692, + "length": 5, + "value": "66000" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 741, + "length": 10, + "value": "0x06054b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 789, + "length": 10, + "value": "0x04034b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 836, + "length": 10, + "value": "0x08074b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 885, + "length": 10, + "value": "0x02014b50" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1085, + "length": 1, + "value": "0" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 1215, + "length": 1, + "value": "8" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 3905, + "length": 4, + "value": "1" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4021, + "length": 6, + "value": "2" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Zip/Archive.swift", + "kind": "IntegerLiteral", + "offset": 4560, + "length": 2, + "value": "22" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Operations/SynchronizedArray.swift", + "kind": "StringLiteral", + "offset": 331, + "length": 32, + "value": "\"com.medallia.synchronizedArray\"" + }, + { + "filePath": "/Users/jenkins/workspace/igital_Mobile_MobileSDK-iOS_v4.2/MobileSDK/Components/Locale/LocaleService.swift", + "kind": "BooleanLiteral", + "offset": 339, + "length": 5, + "value": "false" + } + ] +} diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface new file mode 100644 index 0000000..d94e604 --- /dev/null +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface @@ -0,0 +1,230 @@ +// swift-interface-format-version: 1.0 +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) +// swift-module-flags: -target x86_64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex +import AVKit +import AdSupport +import Compression +import CoreData +import CoreFoundation +import CoreTelephony +import Darwin +import Dispatch +import Foundation +import JavaScriptCore +import MobileCoreServices +import Photos +import Security +import StoreKit +import Swift +import SystemConfiguration +import UIKit.UIApplication +import UIKit.UIDevice +import UIKit +import UserNotifications +import WebKit +import _Concurrency +import _StringProcessing +import zlib +@objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers public class MedalliaDigital : ObjectiveC.NSObject { + @objc public static func sdkInit(token: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setCustomParameter(name: Swift.String, value: Any) + @objc public static func setCustomParameters(_ parameters: [Swift.String : Any]) + @objc public static func showForm(_ formId: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func handleNotification(_ formId: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setFormDelegate(_ formDelegate: MedalliaDigitalSDK.MDFormDelegate?) + @objc public static func setInterceptDelegate(_ interceptDelegate: MedalliaDigitalSDK.MDInterceptDelegate?) + @objc public static func setFeedbackDelegate(_ feedbackDelegate: MedalliaDigitalSDK.MDFeedbackDelegate?) + @objc public static func setCustomInterceptDelegate(_ customInterceptDelegate: MedalliaDigitalSDK.MDCustomInterceptDelegate) + @objc public static func enableIntercept() + @objc public static func disableIntercept() + @objc public static func setLogLevel(_ logLevel: MedalliaDigitalSDK.MDLogLevel) + @objc public static func stopSDK(clearData: Swift.Bool = false) + @objc public static func revertStopSDK() + @objc public static func setSdkFramework(_ mdSdkFrameworkType: MedalliaDigitalSDK.MDSDKFrameworkType) + @objc public static func updateCustomLocale(_ locale: Swift.String?, success: @escaping (_ message: Swift.String?) -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func customInterceptTrigger(engagementId: Swift.String, actionType: MedalliaDigitalSDK.MDInterceptActionType, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setCustomAppearance(_ appearanceMode: MedalliaDigitalSDK.MDAppearanceMode) + @objc public static func setDebugForm(_ debug: Swift.Bool) + @objc public static func closeEngagement(success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setUserId(_ userId: Swift.String?) + @objc deinit +} +@objc public protocol MDFeedbackDelegate { + @objc optional func feedbackDidSubmit(feedbackDelegateData: MedalliaDigitalSDK.MDFeedbackDelegateData) +} +@objc extension UserNotifications.UNNotificationContent { + @objc dynamic public var isMedalliaDigitalSDKNotificationContent: Swift.Bool { + @objc get + } + @objc dynamic public var medalliaDigitalSDKEngagementId: Swift.String? { + @objc get + } +} +extension UIKit.UIImage { + public class func gif(data: Foundation.Data) -> UIKit.UIImage? + public class func gif(url: Swift.String) -> UIKit.UIImage? + public class func gif(name: Swift.String) -> UIKit.UIImage? +} +extension Foundation.Data { + public func gunzipped() -> Foundation.Data? +} +@objc @_hasMissingDesignatedInitializers @objcMembers public class MDFormDelegateData : ObjectiveC.NSObject { + @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String + @objc public var formTriggerType: MedalliaDigitalSDK.MDFormTriggerType + @objc public var url: Swift.String? + @objc public var isBlocked: Swift.Bool + @objc public var formLocaleSet: Swift.String? + @objc public var formLocaleDisplay: Swift.String? + @objc public var formHeaderAppearanceSet: MedalliaDigitalSDK.MDAppearanceMode + @objc public var formHeaderAppearanceDisplay: MedalliaDigitalSDK.MDAppearanceMode + @objc deinit +} +@_hasMissingDesignatedInitializers @objc public class MDExternalError : ObjectiveC.NSObject, Swift.Error { + @objc public var statusCode: Swift.Int + @objc public var message: Swift.String + @objc deinit +} +@objc public protocol MDFormDelegate { + @objc optional func formDidSubmit(formDelegateData: MedalliaDigitalSDK.MDFormDelegateData) + @objc optional func formDidDismiss(formDelegateData: MedalliaDigitalSDK.MDFormDelegateData) + @objc optional func formDidClose(formDelegateData: MedalliaDigitalSDK.MDFormDelegateData) + @objc optional func formDidDisplay(formDelegateData: MedalliaDigitalSDK.MDFormDelegateData) + @objc optional func formDidBlockExternalUrl(formDelegateData: MedalliaDigitalSDK.MDFormDelegateData) + @objc optional func formDidLinkSelect(formDelegateData: MedalliaDigitalSDK.MDFormDelegateData) + @objc optional func formDidThankYouPrompt(formDelegateData: MedalliaDigitalSDK.MDFormDelegateData) +} +@objc public enum MDInterceptActionType : Swift.Int { + case accepted = 0 + case declined = 1 + case deferred = 2 + case skipped = 3 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +public protocol PreviewAppBridgeDelegate : AnyObject { + func formDidClose() + func formDidSubmit() +} +@objc public protocol MDInterceptDelegate { + @objc optional func interceptDidDisplay(interceptDelegateData: MedalliaDigitalSDK.MDInterceptDelegateData) + @objc optional func interceptDidAccept(interceptDelegateData: MedalliaDigitalSDK.MDInterceptDelegateData) + @objc optional func interceptDidDecline(interceptDelegateData: MedalliaDigitalSDK.MDInterceptDelegateData) + @objc optional func interceptDidDefer(interceptDelegateData: MedalliaDigitalSDK.MDInterceptDelegateData) + @objc optional func interceptDidClose(interceptDelegateData: MedalliaDigitalSDK.MDInterceptDelegateData) + @objc optional func interceptDidTriggerSKStoreReviewController(interceptDelegateData: MedalliaDigitalSDK.MDInterceptDelegateData) +} +@objc public protocol MDCustomInterceptDelegate { + @objc optional func targetEvaluationDidSuccess(customInterceptDelegateData: MedalliaDigitalSDK.MDCustomInterceptDelegateData) +} +@objc @_hasMissingDesignatedInitializers @objcMembers public class MDFeedbackDelegateData : ObjectiveC.NSObject { + @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String + @objc public var feedbackClientCorrelationId: Swift.String + @objc public var payload: [Swift.String : Any] + @objc deinit +} +@objc public enum MDLogLevel : Swift.Int, Swift.CaseIterable { + case off + case fatal + case error + case warn + case info + case debug + public func stringRepresentation() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias AllCases = [MedalliaDigitalSDK.MDLogLevel] + public typealias RawValue = Swift.Int + public static var allCases: [MedalliaDigitalSDK.MDLogLevel] { + get + } + public var rawValue: Swift.Int { + get + } +} +@objc public enum MDFormTriggerType : Swift.Int { + case code = 0 + case invite = 1 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objc @_hasMissingDesignatedInitializers @objcMembers public class MDCustomInterceptPayload : ObjectiveC.NSObject { + @objc public var titleText: Swift.String? + @objc public var subtitleText: Swift.String? + @objc public var provideFeedbackText: Swift.String? + @objc public var declineText: Swift.String? + @objc public var deferText: Swift.String? + @objc deinit +} +@objc @_hasMissingDesignatedInitializers @objcMembers public class MDCustomInterceptDelegateData : ObjectiveC.NSObject { + @objc public var formPreloadTimestamp: Swift.Double + @objc public var targetingEvaluationTimestamp: Swift.Double + @objc public var engagementId: Swift.String + @objc public var engagementType: MedalliaDigitalSDK.MDEngagementType + @objc public var payload: MedalliaDigitalSDK.MDCustomInterceptPayload + @objc deinit +} +@objc @_hasMissingDesignatedInitializers @objcMembers public class MDInterceptDelegateData : ObjectiveC.NSObject { + @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String + @objc public var engagementType: MedalliaDigitalSDK.MDEngagementType + @objc public var appearanceSet: MedalliaDigitalSDK.MDAppearanceMode + @objc public var appearanceDisplay: MedalliaDigitalSDK.MDAppearanceMode + @objc deinit +} +@objc public enum MDAppearanceMode : Swift.Int { + case light = 0 + case dark = 1 + case unknown = 2 + public func toString() -> Swift.String + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objc public enum MDEngagementType : Swift.Int { + case form = 0 + case appRating = 1 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +@objc public enum MDSDKFrameworkType : Swift.Int { + case native = 0 + case reactNative = 1 + case cordova = 2 + case flutter = 3 + public init?(rawValue: Swift.Int) + public typealias RawValue = Swift.Int + public var rawValue: Swift.Int { + get + } +} +extension MedalliaDigitalSDK.MDInterceptActionType : Swift.Equatable {} +extension MedalliaDigitalSDK.MDInterceptActionType : Swift.Hashable {} +extension MedalliaDigitalSDK.MDInterceptActionType : Swift.RawRepresentable {} +extension MedalliaDigitalSDK.MDLogLevel : Swift.Equatable {} +extension MedalliaDigitalSDK.MDLogLevel : Swift.Hashable {} +extension MedalliaDigitalSDK.MDLogLevel : Swift.RawRepresentable {} +extension MedalliaDigitalSDK.MDFormTriggerType : Swift.Equatable {} +extension MedalliaDigitalSDK.MDFormTriggerType : Swift.Hashable {} +extension MedalliaDigitalSDK.MDFormTriggerType : Swift.RawRepresentable {} +extension MedalliaDigitalSDK.MDAppearanceMode : Swift.Equatable {} +extension MedalliaDigitalSDK.MDAppearanceMode : Swift.Hashable {} +extension MedalliaDigitalSDK.MDAppearanceMode : Swift.RawRepresentable {} +extension MedalliaDigitalSDK.MDEngagementType : Swift.Equatable {} +extension MedalliaDigitalSDK.MDEngagementType : Swift.Hashable {} +extension MedalliaDigitalSDK.MDEngagementType : Swift.RawRepresentable {} +extension MedalliaDigitalSDK.MDSDKFrameworkType : Swift.Equatable {} +extension MedalliaDigitalSDK.MDSDKFrameworkType : Swift.Hashable {} +extension MedalliaDigitalSDK.MDSDKFrameworkType : Swift.RawRepresentable {} diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..f14d966 Binary files /dev/null and b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface similarity index 94% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface index 57440b7..d94e604 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface @@ -1,6 +1,7 @@ // swift-interface-format-version: 1.0 -// swift-compiler-version: Apple Swift version 5.6.1 (swiftlang-5.6.0.323.66 clang-1316.0.20.12) +// swift-compiler-version: Apple Swift version 5.7.2 (swiftlang-5.7.2.135.5 clang-1400.0.29.51) // swift-module-flags: -target x86_64-apple-ios10.0-simulator -enable-objc-interop -enable-library-evolution -swift-version 5 -enforce-exclusivity=checked -O -module-name MedalliaDigitalSDK +// swift-module-flags-ignorable: -enable-bare-slash-regex import AVKit import AdSupport import Compression @@ -20,8 +21,10 @@ import SystemConfiguration import UIKit.UIApplication import UIKit.UIDevice import UIKit +import UserNotifications import WebKit import _Concurrency +import _StringProcessing import zlib @objc @_inheritsConvenienceInitializers @_hasMissingDesignatedInitializers @objcMembers public class MedalliaDigital : ObjectiveC.NSObject { @objc public static func sdkInit(token: Swift.String, success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) @@ -44,11 +47,20 @@ import zlib @objc public static func setCustomAppearance(_ appearanceMode: MedalliaDigitalSDK.MDAppearanceMode) @objc public static func setDebugForm(_ debug: Swift.Bool) @objc public static func closeEngagement(success: @escaping () -> Swift.Void, failure: @escaping (_ error: MedalliaDigitalSDK.MDExternalError) -> Swift.Void) + @objc public static func setUserId(_ userId: Swift.String?) @objc deinit } @objc public protocol MDFeedbackDelegate { @objc optional func feedbackDidSubmit(feedbackDelegateData: MedalliaDigitalSDK.MDFeedbackDelegateData) } +@objc extension UserNotifications.UNNotificationContent { + @objc dynamic public var isMedalliaDigitalSDKNotificationContent: Swift.Bool { + @objc get + } + @objc dynamic public var medalliaDigitalSDKEngagementId: Swift.String? { + @objc get + } +} extension UIKit.UIImage { public class func gif(data: Foundation.Data) -> UIKit.UIImage? public class func gif(url: Swift.String) -> UIKit.UIImage? @@ -111,6 +123,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { } @objc @_hasMissingDesignatedInitializers @objcMembers public class MDFeedbackDelegateData : ObjectiveC.NSObject { @objc public var timestamp: Swift.Double + @objc public var engagementId: Swift.String @objc public var feedbackClientCorrelationId: Swift.String @objc public var payload: [Swift.String : Any] @objc deinit @@ -190,6 +203,7 @@ public protocol PreviewAppBridgeDelegate : AnyObject { case native = 0 case reactNative = 1 case cordova = 2 + case flutter = 3 public init?(rawValue: Swift.Int) public typealias RawValue = Swift.Int public var rawValue: Swift.Int { diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/module.modulemap b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/module.modulemap similarity index 100% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/module.modulemap rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/Modules/module.modulemap diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/_CodeSignature/CodeResources b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/_CodeSignature/CodeResources similarity index 68% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/_CodeSignature/CodeResources rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/_CodeSignature/CodeResources index 96a2155..d5fd9be 100644 --- a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/_CodeSignature/CodeResources +++ b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/_CodeSignature/CodeResources @@ -6,51 +6,55 @@ Assets.car - y9x3NHKiJYmCV6fd7DFTKmKN1As= + BZhVqr6Svpg0e9uqZ8yXR9WTfBY= Headers/MedalliaDigitalSDK-Swift.h - xnNonjPIYIgFUyKpDEwAH6U7zrg= + s+p5UNaBE/TCJwvZfj6RVwpNo8Y= Info.plist - ZwevFCuc4kwJtV8DvPgSJosrA8E= + t0L1M4cw2Ld3hUiNt8JSJNybupQ= + + Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.abi.json + + 1ZTVHV7Gcf/2oxgkPndoaYqk3dQ= + + Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface + + OZcpt1W95/SoD9pUJ4hRHRwIdS8= Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc - c5vJvlM0g3BsW4P/f+KvAXdi8XQ= + L9oULUPAlEn9ddFSpU+V1YRYIkc= Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface - IwQzvm4wZIFU8gO48YNGI2kItSk= + OZcpt1W95/SoD9pUJ4hRHRwIdS8= Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule - Qn8UR6FOUzZrONRSMl4IGsAz+T4= - - Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftdoc - - uL+ef7imDLA0/DL0twtljsXwtho= + aM8310C799ea3gFfwxGOq7SoBDU= - Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftinterface + Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json - zOA+P2+nYtKbOsZGSa093ZU1cQw= + 1ZTVHV7Gcf/2oxgkPndoaYqk3dQ= - Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftmodule + Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface - S4rY51qlrbgt383O56bOJMp8l4U= + kldnm2RRXIfaSf9ScoHosuAVuvQ= Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc - l4jBLS7QPbsP3Z5P3eeY9nthBP0= + GRggMj+RNgIDptnFlCExIaoJXxA= Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface - Gj9ZY0ECDeR8lQ+HhF1nEP/O4cw= + kldnm2RRXIfaSf9ScoHosuAVuvQ= Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule - a1APEhexeFey65CHyFQG2cY69XI= + ISgOMrKYvVvvJZHkvpZTFleg30o= Modules/module.modulemap @@ -67,121 +71,132 @@ hash - y9x3NHKiJYmCV6fd7DFTKmKN1As= + BZhVqr6Svpg0e9uqZ8yXR9WTfBY= hash2 - +sSOEPDGw2EqgSro0FbE8kWcfOWJaoVIPa0ZvB8L/wo= + uF9abrda5f9wCYozAayLgj+pHW7NEwOHo4NMKRKLzEo= Headers/MedalliaDigitalSDK-Swift.h hash - xnNonjPIYIgFUyKpDEwAH6U7zrg= + s+p5UNaBE/TCJwvZfj6RVwpNo8Y= hash2 - 6d3rkPKNXB5LBGbiJyom8I+ufgjzTxMRNwiPVs2niME= + /xNJQO2kcQDDMI97K1kNmw7ycrCJA34IBAodmdl8UY0= - Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc + Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.abi.json hash - c5vJvlM0g3BsW4P/f+KvAXdi8XQ= + 1ZTVHV7Gcf/2oxgkPndoaYqk3dQ= hash2 - LQiIDKEJjVSw9pN9sZUr8cqM39vEfPjm/9gybHw4o+E= + mAOPsc1PkAHzb4f3LdWyWQ2tAfuunFETIQTaeZocjgc= - Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface + Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface hash - IwQzvm4wZIFU8gO48YNGI2kItSk= + OZcpt1W95/SoD9pUJ4hRHRwIdS8= hash2 - nZP+6hchu/AVmjs6PYgalm6JPf7iw8q33GgKkQADptw= + qTZE3rmmauv/+9cJvT71H9LRPP6Cme6i0mIc4FKqMZ8= - Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule + Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftdoc hash - Qn8UR6FOUzZrONRSMl4IGsAz+T4= + L9oULUPAlEn9ddFSpU+V1YRYIkc= hash2 - Hc176vqQ5ve2F3aiM6Gn1xpDUt/UbAqC7QUdHjEcMTs= + G6zCixlmCweYmc9Qh16Dh8TKtjc92u8d81RdIdm2Czs= - Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftdoc + Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftinterface + + hash + + OZcpt1W95/SoD9pUJ4hRHRwIdS8= + + hash2 + + qTZE3rmmauv/+9cJvT71H9LRPP6Cme6i0mIc4FKqMZ8= + + + Modules/MedalliaDigitalSDK.swiftmodule/arm64-apple-ios-simulator.swiftmodule hash - uL+ef7imDLA0/DL0twtljsXwtho= + aM8310C799ea3gFfwxGOq7SoBDU= hash2 - L7Gcf9gWbjg5Y1ua81DkKxeIurOsvw/wGWuTqGBg17c= + 6Y61DHeFpSyn9rPVmSiHjCnP0DQG3if68/nG7OHMw5g= - Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftinterface + Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.abi.json hash - zOA+P2+nYtKbOsZGSa093ZU1cQw= + 1ZTVHV7Gcf/2oxgkPndoaYqk3dQ= hash2 - Q8FUK2mKc7JnMgZifIgyX8nflhS2euPc5u6ZL8VoWZk= + mAOPsc1PkAHzb4f3LdWyWQ2tAfuunFETIQTaeZocjgc= - Modules/MedalliaDigitalSDK.swiftmodule/i386-apple-ios-simulator.swiftmodule + Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface hash - S4rY51qlrbgt383O56bOJMp8l4U= + kldnm2RRXIfaSf9ScoHosuAVuvQ= hash2 - BHRbhs3FzRk460A3hNpZxYETvyMqAKs+sH1cuUDGFjc= + v3S3p0m2nl8RLOxh8ZQTkTt8BemUw2DwDFaKfef8ruE= Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftdoc hash - l4jBLS7QPbsP3Z5P3eeY9nthBP0= + GRggMj+RNgIDptnFlCExIaoJXxA= hash2 - X1bkRser/9qmjvsCir4ipRdFXZ6s1qF4tuFCN96oFQ0= + jD1cRjadBAaZAxfNUeBVO3mj34eZVgEg64MN8jcz99o= Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftinterface hash - Gj9ZY0ECDeR8lQ+HhF1nEP/O4cw= + kldnm2RRXIfaSf9ScoHosuAVuvQ= hash2 - gx6wV7Wk6TmAlQnkEV+ziBfyC48BbSaosZcGTyvwKDQ= + v3S3p0m2nl8RLOxh8ZQTkTt8BemUw2DwDFaKfef8ruE= Modules/MedalliaDigitalSDK.swiftmodule/x86_64-apple-ios-simulator.swiftmodule hash - a1APEhexeFey65CHyFQG2cY69XI= + ISgOMrKYvVvvJZHkvpZTFleg30o= hash2 - 5rDXMqb6BhppS1JEWETJkwXLhJJ3mNcx+82Keorz5cQ= + Y5JWMJHXRZZHtYYtLIHgvZCSFGC70GbwaocKWuOqpOI= Modules/module.modulemap diff --git a/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/stripArchitechtures.sh b/packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/stripArchitechtures.sh similarity index 100% rename from packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_i386_x86_64-simulator/MedalliaDigitalSDK.framework/stripArchitechtures.sh rename to packages/nativescript-medallia/platforms/ios/MedalliaDigitalSDK.xcframework/ios-arm64_x86_64-simulator/MedalliaDigitalSDK.framework/stripArchitechtures.sh diff --git a/packages/nativescript-urban-airship/package.json b/packages/nativescript-urban-airship/package.json index f6c602f..80e824f 100644 --- a/packages/nativescript-urban-airship/package.json +++ b/packages/nativescript-urban-airship/package.json @@ -1,6 +1,6 @@ { "name": "@essent/nativescript-urban-airship", - "version": "8.0.0", + "version": "10.0.0-alpha.0", "description": "Urban Airship for NativeScript", "main": "index", "typings": "index.d.ts", diff --git a/packages/nativescript-urban-airship/platforms/android/include.gradle b/packages/nativescript-urban-airship/platforms/android/include.gradle index dba04e6..b454316 100644 --- a/packages/nativescript-urban-airship/platforms/android/include.gradle +++ b/packages/nativescript-urban-airship/platforms/android/include.gradle @@ -6,7 +6,7 @@ repositories { jcenter() } dependencies { - def airshipVersion = "16.9.2" + def airshipVersion = "17.1.0" // FCM push provider implementation "com.urbanairship.android:urbanairship-fcm:$airshipVersion" @@ -16,7 +16,7 @@ dependencies { // In-App Automation implementation "com.urbanairship.android:urbanairship-automation:$airshipVersion" - + // Preference Center implementation "com.urbanairship.android:urbanairship-preference-center:$airshipVersion" } diff --git a/packages/nativescript-urban-airship/platforms/ios/Podfile b/packages/nativescript-urban-airship/platforms/ios/Podfile index ae4203f..c4f2d42 100644 --- a/packages/nativescript-urban-airship/platforms/ios/Podfile +++ b/packages/nativescript-urban-airship/platforms/ios/Podfile @@ -1,4 +1,4 @@ -platform :ios, '13.0' +platform :ios, '14.0' -pod 'Airship' , '~> 16.11.3' -pod 'Airship/PreferenceCenter' +pod 'Airship', '~> 17.1.3' +pod 'Airship/PreferenceCenter', '~> 17.1.3' diff --git a/tools/assets/App_Resources/iOS/Podfile b/tools/assets/App_Resources/iOS/Podfile index 3c8210b..b7ab5cb 100644 --- a/tools/assets/App_Resources/iOS/Podfile +++ b/tools/assets/App_Resources/iOS/Podfile @@ -1,9 +1,9 @@ -platform :ios, '13.0' +platform :ios, '14.0' post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| - config.build_settings.delete 'IPHONEOS_DEPLOYMENT_TARGET' + config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '14.0' end end end diff --git a/tools/assets/App_Resources/iOS/build.xcconfig b/tools/assets/App_Resources/iOS/build.xcconfig index e77e78d..187dcca 100644 --- a/tools/assets/App_Resources/iOS/build.xcconfig +++ b/tools/assets/App_Resources/iOS/build.xcconfig @@ -4,3 +4,4 @@ // To build for device with Xcode 8 you need to specify your development team. More info: https://developer.apple.com/library/prerelease/content/releasenotes/DeveloperTools/RN-Xcode/Introduction.html // DEVELOPMENT_TEAM = YOUR_TEAM_ID; ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; +IPHONEOS_DEPLOYMENT_TARGET = 14.0; diff --git a/tools/workspace-scripts.js b/tools/workspace-scripts.js index ae55742..78517d5 100644 --- a/tools/workspace-scripts.js +++ b/tools/workspace-scripts.js @@ -27,11 +27,11 @@ module.exports = { description: '⚆ Clean 🧹', }, ios: { - script: 'nx run demo:ios', + script: 'nx debug demo ios', description: '⚆ Run iOS ', }, android: { - script: 'nx run demo:android', + script: 'nx debug demo android', description: '⚆ Run Android 🤖', }, },